我是Javascript的新手。
我正在尝试运行单击网页上按钮的Javascript代码。 HTML代码如下所示:
<div class="felement fgroup" id="yui_3_17_2_2_1446895504264_827"><input name="savegrade" value="Save changes" type="submit" id="id_savegrade"> <input name="saveandshownext" value="Save and show next" type="submit" id="id_saveandshownext"> <input name="cancelbutton" value="Cancel" type="submit" onclick="skipClientValidation = true; return true;" class=" btn-cancel" id="id_cancelbutton"></div>
此元素称为“x”。我想点击带有'id_saveandshownext'标识的提交按钮。
我试过了:
x.getElementsById('id_saveandshownext').click();
没用...... 如何点击此按钮?
答案 0 :(得分:0)
您需要使用以下文档:
document.getElementById("id_saveandshownext").click();
答案 1 :(得分:0)
因为你正在使用jquery,你可以使用以下 -
<script>
//your function that exectues button to be clicked
$(function(){
$('#id_saveandshownext').click();
});
</script>
答案 2 :(得分:-1)
您也可以触发点击事件,如下所示:
document.getElementById("id_saveandshownext").trigger("click");