我是一个初学者,急切地寻求帮助。
我正在构建一个Excel宏来填充(私有)网页。
我还可以调用提交数据/表单的JavaScript函数。
但是,然后我无法确认(总是“确定” /输入)或简单跳过的“来自网页的消息”。
我的代码仅跳过“您同意取消费用吗?”
微距停止了,如果不手动单击You agreed
“确定”按钮,我将无法做任何事情。我不能跳过“您同意”。
网页:
function online_guide_popup()
}
if(confirm("Do you agree to a cancellation charge?") == true) {
if(true) { //
var checkin = $("#check_in_day").val().substring(0, 6);
if (checkin == nowDate("1").substring(0, 6)) {
alert("You agreed.");
}
//alert($("#calTr1").find("tr").find("button[disabled!=disabled]").length);
}
commPopup("mainVo", "/onlineRsv/rsvGuidePop", "1250", "850");
} else {
return;
}
我的密码
Call IE.Document.parentWindow.execScript("window.confirm = function(){return true;}", "JavaScript")
Call IE.Document.parentWindow.execScript("online_guide_popup();", "JavaScript")