0

当用户单击表单上的取消按钮时,我希望弹出一个确认消息框。我相信这将是正确的 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 调用该函数。

4

1 回答 1

0

在您的取消按钮上添加此标记属性

OnClientClick="return confirmation();"
于 2011-04-30T00:36:21.567 回答