从这个页面,它显示了"10“条目。当我们在Chrome浏览器中使用Tamper猴子或Stylebot打开这个网站时,我们如何将其更改为"50“?
发布于 2018-09-28 03:50:54
const select = document.querySelector('[name=example_length]');select.value = 50;select.dispatchEvent(new Event('change'));https://stackoverflow.com/questions/52547931
复制相似问题