Javascript 从浏览器快捷方式提交表单的功能
Javascript function to submit form from browser shortcut
为了在本分析网站上提交几个站点:https://www.outiref.fr
我想创建一个浏览器快捷方式,自动将访问页面提交到该站点。
我有相同的快捷方式来提交 google 搜索“站点:”:
javascript:(function(){window.open('http://www.google.com/search?tbs=cdr%3A1%2Ccd_min%3A1%2F1%2F2000&q=site%3A'+encodeURIComponent(location.href))})();
我尝试使用相同的方法,但无法达到我的目的
javascript:(function(){window.open('https://www.outiref.fr')(
window.location='https://www.outiref.fr')(document.getElementById("audit_uri")(encodeURIComponent(location.href)).InputEvent(document.getElementById("audit_save").submit()))})();
编辑:我想填写表格,而不是提交。
那不可能。 Google 提供 URL like /search=XXX 用于直接启动搜索而不是 outiref。在 outiref 中,搜索仅在 JS 中,您无法从您的网站触发其他站点中的元素。
此外,outiref 只提供一个 URL 和 /YOUR_SEARCH 但我们不能使用它,因为该页面已缓存并且是先前生成的。你可以直接在https://www.outiref.fr/audit+test.com+5a7d91599a8a836.php you have a hase in the last part of url and you can't access to https://www.outiref.fr/audit+test.com.php的URL中看到。
为了在本分析网站上提交几个站点:https://www.outiref.fr 我想创建一个浏览器快捷方式,自动将访问页面提交到该站点。
我有相同的快捷方式来提交 google 搜索“站点:”:
javascript:(function(){window.open('http://www.google.com/search?tbs=cdr%3A1%2Ccd_min%3A1%2F1%2F2000&q=site%3A'+encodeURIComponent(location.href))})();
我尝试使用相同的方法,但无法达到我的目的
javascript:(function(){window.open('https://www.outiref.fr')(
window.location='https://www.outiref.fr')(document.getElementById("audit_uri")(encodeURIComponent(location.href)).InputEvent(document.getElementById("audit_save").submit()))})();
编辑:我想填写表格,而不是提交。
那不可能。 Google 提供 URL like /search=XXX 用于直接启动搜索而不是 outiref。在 outiref 中,搜索仅在 JS 中,您无法从您的网站触发其他站点中的元素。
此外,outiref 只提供一个 URL 和 /YOUR_SEARCH 但我们不能使用它,因为该页面已缓存并且是先前生成的。你可以直接在https://www.outiref.fr/audit+test.com+5a7d91599a8a836.php you have a hase in the last part of url and you can't access to https://www.outiref.fr/audit+test.com.php的URL中看到。