2

我想显示一个确认框,包括 4 个选项:在用户单击我的 aspx 页面中的按钮后,是/否/全部是/全部否。我看过很多样本,但它只包含是/否选项。请告诉我这样做的方法。

4

1 回答 1

3

没有本机 javascript 函数(我猜你看到了使用confirm函数的示例)。

尝试创建伪对话框的 javascript 库。

最常用的一种是JQueryUI。特别是,看看sample,你会以类似的方式结束:Dialog confirmation

<script>
  $(function() {
    $( "#dialog-confirm" ).dialog({
      resizable: false,
      height:140,
      modal: true,
      buttons: {
        "Yes": function() {
          // Handler for Yes
        },
        "No": function() {
          // Handler for No
        },
        "Yes to all": function() {
          // Handler for Yes to all
        },
        "No to all": function() {
          // Handler for no to all
        }
      }
    });
  });
  </script>
于 2013-08-06T07:08:15.817 回答