当用户单击表单上的取消按钮时,我希望弹出一个确认消息框。我相信这将是正确的 javascript 代码:
function confirmation() {
var answer = confirm("Are you sure you want to cancel? Any information you have entered will be discarded.")
if (answer) {
window.location = "index.htm";
}
}
但是,我不确定如何从我的代码后面的页面中使用 VB 调用该函数。