浏览器里,网页打开F12,打开console调试界面,查询网页中id为fr-btn-BTN
的元素:
document.querySelectorAll("#fr-btn-BTN");
jQuery点击id为fr-btn-BTN
的按钮:
$("#fr-btn-BTN").click();
jQuery点击id为fr-btn-BTN
的按钮后执行操作:
$("#fr-btn-BTN").click(function(){
//TODO code
setTimeout(function(){
alert("a");
},1200)
});
—
发表回复