输入类型在Javascript中提交多个函数

时间:2015-04-19 14:48:57

标签: javascript jquery userscripts

我最近发现了用户脚本的使用,而且由于我的工作与网站上的重复性任务有关,我需要创建一个具有多种功能的按钮。到目前为止我的代码是创建按钮并应用doAll函数,它选择了两个单选按钮。执行此操作后,我还希望按钮能够提交。我该如何实现它?提前致谢。

var input=document.createElement("input");
input.type="button";
input.value="Save";
input.onclick = doAll;
document.body.appendChild(input); 


function doAll() {
    $('[id^=radio1_]').prop("checked", true)
    $('[id^=radio2_]').prop("checked", true)
    }

1 个答案:

答案 0 :(得分:0)

使用选择器查找包含所需操作的表单:

function doAll() {
    $('[id^=radio1_], [id^=radio2_]').prop("checked", true);
    $('form[action="/photo/edit?id=1234"]').submit();
}