gpt4 book ai didi

javascript - JS : Bookmarklet - Create a bookmarklet that fires a local js file to fill up fields in a form of the current page

转载 作者:行者123 更新时间:2023-11-30 21:21:15 24 4
gpt4 key购买 nike

我正在尝试创建一个小书签来填充我当前页面表单上的字段。

这是一个用给定值填充 1 个字段的简单脚本:

javascript:(function(){d=document;e=d.getElementById("ember469");e.value="dummy3@restricted.com";e.blur();})();

如果我将 is 存储为书签,这将正常工作。现在我想将此 JS 存储在我机器的本地文件中,因为我想填写 X 个字段并且我不想维护书签中的代码。

我尝试创建一个小书签,它使用以下方法调用我的本地 js“test.js”:

javascript:(function(){var js=document.createElement('script');js.setAttribute('src', 'C:/Users/path/to/my/sample.js');document.body.appendChild(js);}());

我从这些链接中得到了这个想法:
Link 1
Link 2

这是我的 sample.js 内容:

function(){d=document;e=d.getElementById("ember469");e.value="dummy3@restricted.com";e.blur();}

我环顾四周,但找不到加载本地 js 的示例,大多数示例都在加载在线 js 文件。

我无法完成这项工作。我错过了什么?

感谢任何帮助!!

更新:根据下面@Shugar 的回答,我更新了我的 sample.js 和书签。我可以看到脚本标记被插入到页面上,但该脚本没有触发。该字段未填充。

enter image description here

最佳答案

希望下面的方法对你有用。 (只是稍微编辑了发布的代码。)


书签:

javascript: (function() {
var js = document.createElement('script');
js.setAttribute('src', 'C:/Users/path/to/my/sample.js');
document.body.appendChild(js);
})();


sample.js:

(function() {
d = document;
e = d.getElementById("ember469");
e.value = "dummy3@restricted.com";
e.blur();
})();

关于javascript - JS : Bookmarklet - Create a bookmarklet that fires a local js file to fill up fields in a form of the current page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45163553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com