我正在编写一个脚本,使用greasemonkey自动提交表单。这是我的代码:
setInterval(function () {location.href = javascript:submitAction_win0(document.win0,'DERIVED_REGFRM1_LINK_ADD_ENRL$118$');";}, 500);
setInterval()工作正常,因为我用alert()测试它。我如何调用submitAction_win0()一定有问题。请帮助!
答案 0 :(得分:0)
你根本不应该使用'location.href'。 在这里如何做到:
$("#form_id").submit(); //jQuery
document.getElementById("form_id").submit(); //plain JavaScript
和所有人一起
setInterval(function () {
document.getElementById("form_id").submit();
}, 500);