Javascript确认弹出窗口

时间:2012-09-18 07:42:10

标签: javascript onclick confirmation

我是javascript和web开发的新手,现在我正在尝试使用codeigniter,我想在删除链接上设置一个javascript确认框。现在我使用它可以很好地工作:

<script type="text/javascript">
    function con(message) {
        var answer = confirm(message);
        if (answer)
        {
            return true;
        }

        return false;
    }
</script>

和此:

echo '<a href="/groups/deletegroup/'.$group->id.'" OnClick="return con(\'Are you sure you want to delete the group?\');" class="btn small light-grey block">Delete</a>';

我遇到的问题是,第一次点击链接时没有弹出窗口,但每次点击后都会按原样运行。我也觉得也许我应该使用document.getElementById和window.onload来使它正常工作。 任何帮助将不胜感激。

我最终使用了一个看起来像这样的jquery解决方案:

$(document).ready(function (){
$('.delete').click(function (e) {
    e.preventDefault();
    var href = $(this).attr('href');
    $.msgAlert({
        title: 'Delete'
        ,text: 'Do you really want to delete this group?'
        ,type: 'error'
        ,callback: function () {
                location.href = href;
        }
    });
})

});

我使用商业msgUI作为msgAlert框。

1 个答案:

答案 0 :(得分:-1)

试试这个......

<强> HTML:

<a href="#" id="btn-delete">Delete</a>

<强> JS:

//window.onload = function() {
    var btnDelete = document.getElementById('btn-delete');
    btnDelete.onclick = function() {
        var message = 'Are you sure you want to delete the group?';
        if (confirm(message)) {
            // delete something...
        }
    }
//};

http://jsfiddle.net/PEHx9/