我不是Javascript专家,但我有一项任务:我需要在Google搜索中粘贴搜索查询,然后仅使用Javascript按Enter键。
我粘贴了这样的搜索查询:
document.querySelectorAll("input")[4].value="Cat"
如何模拟Enter键?
我知道我可以使用粘贴:
document.location.href = 'https://www.google.ru/search?q=Cat';
但是这个解决方案不适合我,因为我不与谷歌合作,但我的问题与我描述的类似。另外我使用的是Android WebViev(Chromium),它不支持JQuery。