Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/470.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 添加模式确认或删除_Javascript_Jquery - Fatal编程技术网

Javascript 添加模式确认或删除

Javascript 添加模式确认或删除,javascript,jquery,Javascript,Jquery,我创建了一个简单的javascript警报 if (confirm('Are you sure you want to remove this item?')) { swoosh(id, path+'swoosh_config/swoosh_delete_jobtitle', 'jobtitledv') } 我把它改成模态 $('#delete').modal('show'); 这是我的新警报 <div class="modal fade" id="delete

我创建了一个简单的javascript警报

if (confirm('Are you sure you want to remove this item?')) {
        swoosh(id, path+'swoosh_config/swoosh_delete_jobtitle', 'jobtitledv')
    }
我把它改成模态

$('#delete').modal('show');
这是我的新警报

<div class="modal fade" id="delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-haspopup="true" aria-hidden="true">
     <div class="modal-dialog">
          <div class="modal-content">
                <div class="alert alert-info fade in" id="alert">
                     <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                     <h4>Heads Up!</h4>
                     <p>What you are doing will delete a data!</p>
                </div>
          </div>
     </div>
</div>

&时代;
小心!
您正在执行的操作将删除一个数据

我将如何添加一个确认按钮,以引导我找到“swoosh”及其链接。

请参见

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Dialog - Modal confirmation</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
    $( "#dialog-confirm" ).dialog({
      resizable: false,
      height:140,
      modal: true,
      buttons: {
        "Delete all items": function() {
          $( this ).dialog( "close" );
        },
        Cancel: function() {
          $( this ).dialog( "close" );
        }
      }
    });
  });
  </script>
</head>
<body>

<div id="dialog-confirm" title="Empty the recycle bin?">
  <p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>These items will be permanently deleted and cannot be recovered. Are you sure?</p>
</div>

<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>


</body>
</html>

jQuery UI对话框-模式确认
$(函数(){
$(“#对话框确认”)。对话框({
可调整大小:false,
身高:140,
莫代尔:是的,
按钮:{
“删除所有项目”:函数(){
$(此).dialog(“关闭”);
},
取消:函数(){
$(此).dialog(“关闭”);
}
}
});
});
这些项目将被永久删除,无法恢复。你确定吗

我是自由人。Donec aliquet leo vel magna。红背相思。埃蒂安·比本杜姆、埃尼·福西布斯·阿利奎特·朗库斯、阿尔库·菲利斯·乌尔里西斯·内克、艾米特·拍卖行精英爱神之座

也许这对你有帮助