Select 网站移动版中的一个选项(响应模式)

Select an option in website's mobile version (responsive mode)

当我以响应模式浏览时,如何 select 来自 https://www.supremenewyork.com/mobile#products/305278 的尺寸选项?我用 document.querySelector("#size-options > option:nth-child(2)").selected = "selected"; 试过了,但没用。

在桌面模式下 https://www.supremenewyork.com/shop/pants/n1to4psjk/wlmx7p5hr 方法 document.querySelector("#size > option:nth-child(3)").selected = "selected"; 按预期工作。

你可以使用 document.querySelector("#order_billing_country").value = "countryCode"; 它适用于台式机和移动设备。 手机上的 UI 永远不会更新,但是当你按下处理付款时,正确的值会发送给 Supreme。