Javascript 中具有多种功能的输入类型提交
Input type submit with multiple functions in Javascript
我最近发现了用户脚本的使用,并且由于我的工作与网站上的重复性任务有关,所以我需要创建一个具有多种功能的按钮。到目前为止,我的代码是创建按钮并应用选择两个单选按钮的函数 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)
}
使用选择器查找包含所需操作的表单:
function doAll() {
$('[id^=radio1_], [id^=radio2_]').prop("checked", true);
$('form[action="/photo/edit?id=1234"]').submit();
}
我最近发现了用户脚本的使用,并且由于我的工作与网站上的重复性任务有关,所以我需要创建一个具有多种功能的按钮。到目前为止,我的代码是创建按钮并应用选择两个单选按钮的函数 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)
}
使用选择器查找包含所需操作的表单:
function doAll() {
$('[id^=radio1_], [id^=radio2_]').prop("checked", true);
$('form[action="/photo/edit?id=1234"]').submit();
}