5

我有一个用数据库中的数据填充的表,其中每一行都有一个单元格,里面有一个锚元素。这个锚点会指向同一个页面,但是有一个查询字符串告诉 php 哪一行包含它应该删除的数据。

当用户单击锚点时,我需要打开一个 jQuery 对话框,要求他在加载 url 之前确认他的意图。“取消”按钮应该关闭对话框并且什么都不做。然后“确定”按钮应该让 URL 打开。

非常感谢任何帮助。

// 使用“我尝试过的”进行编辑。这是我第一次弄乱 jQuery,学习的时间已经不多了... =(

jQuery(document).ready(function(){
var $dialog = jQuery('<div class='msg_dialog'></div>')
    .html('Are you sure you want to do this?')
    .dialog({
        autoOpen: false,
        title: 'Confirm action',
        buttons: [{
            text: "Cancel",
            click: function(){
                jQuery(this).dialog("close");
            }
        }] // didn't even try the OK button since I couldn't even get the dialog opened
    });

jQuery('#confirm_del').click(function(){
    $dialog.dialog('open');
    return false;
});
});
4

4 回答 4

28
$("a").on("click", function(e) {
    var link = this;

    e.preventDefault();

    $("<div>Are you sure you want to continue?</div>").dialog({
        buttons: {
            "Ok": function() {
                window.location = link.href;
            },
            "Cancel": function() {
                $(this).dialog("close");
            }
        }
    });
});

示例:http: //jsfiddle.net/uRGJD/

(重定向到 Google 不会在 JSFiddle 上工作,但应该在普通页面上工作)

于 2012-07-18T00:40:30.510 回答
7

如何使用:

<a href="<?php echo 'your_url'.'?query_string='.$query_string ?>" onclick="return confirm('Are your sure?')">
     Go
</a>
于 2012-07-18T00:40:29.963 回答
2

您可以创建一个为您创建按钮的对话框,但我喜欢您自己创建按钮的方法,这样您就可以使用真实链接而不是使用 javascript 进行导航。

工作演示:http: //jsfiddle.net/gilly3/sdzbB/

<div id="dialog-confirm">
    <div class="message">Are you sure?</div>
    <div class="buttons">
        <a class="cancel" href="#">Cancel</a>
        <a class="ok" href="#">Ok</a>
    </div>
</div>
$("#dialog-confirm").dialog({ autoOpen: false }).find("a.cancel").click(function(e){
    e.preventDefault();
    $("#dialog-confirm").dialog("close");
});
$("a[href]:not(#dialog-confirm a)").click(function(e) {
    e.preventDefault();
    $("#dialog-confirm")
        .dialog("option", "title", $(this).text())
        .dialog("open")
        .find("a.ok").attr({
            href: this.href,
            target: this.target
        });
});

使用真实链接而不是 , 的好处location.href = link是您可以获得各种内置的好东西,例如在新选项卡中打开链接的鼠标快捷方式、将链接拖动到书签栏或桌面的能力、复制的能力剪贴板的链接,通过选项卡访问键盘等。

于 2012-07-18T00:52:48.923 回答
0

您应该防止链接的默认行为可以像此代码一样完成。

$('.tableId tr td a').click(function(event){
    //code to display confirmation dialog  
    event.preventDefault();

  }      

您可以使用此 JQuery 插件进行确认对话框。http://jqueryui.com/demos/dialog/#modal-confirmation

于 2012-07-18T00:42:45.457 回答