-3

我通常以这种方式显示一个消息框:

Page.ClientScript.RegisterStartupScript(GetType(), "msgbox", "alert('Lecturer ID already exists in the database');", true);

在这个例子中,它只显示一个 ok 按钮,如果我用“confirm”替换单词“alert”然后它显示 ok 并取消,我想知道我可以放什么来显示是和否?

4

1 回答 1

3

不幸的是,没有跨浏览器支持打开不是默认确定/取消对的确认对话框。

试试 Jquery UI:http: //jqueryui.com/

jQueryUI你可以这样做

$("#id").dialog({
  buttons: {
    "Yes": function() {},
    "No": function() {}
  }
});
于 2013-05-22T16:42:23.700 回答