如果单击包含“href”的链接,则不会显示Bootbox模式

时间:2016-08-13 10:37:54

标签: javascript php twitter-bootstrap bootbox

好吧所以我使用的bootbox工作得很好,但是当我想在PHP链接中发送变量时,所有javascript都可以工作但不是bootbox。

----这有效----

<a href='#' class="alert_without_href">I dont have an href</a>
<script>
$(document).ready(function()
 {
    $('a.alert_without_href').on('click', function()
    {
        alert('This works');
        bootbox.alert("This ALSO works");
    });
});
</script>

----这不起作用----

<a href="?name=Jacob" class="alert_with_href">I have an href</a><br><br>
<script>
   $(document).ready(function()
   {
      $('a.alert_with_href').on('click', function()
      {
        alert('This works');
        bootbox.alert("This one DOESNT work"); <---- PROBLEM IS HERE
        alert('This also works');
      });
   });
</script>

----然后最后显示----

<?php
    if ($_SERVER['REQUEST_METHOD'] === 'GET')
    {
        echo 'Hello ' . $_GET["name"];
    }  
?>

我确实需要在链接中传递一个变量,它不能被取出。我该如何解决这个问题?

提前致谢

---- ---- EDIT 我在下面添加了一张表格的图像,并解释了究竟要做什么

Table of users

- 只有在您看到图像时才会阅读 - 因此,表中“Action”下的每个链接都会创建一个包含用户唯一ID变量的链接。单击它时,我检查是否设置了$ _GET ['remove_id'],然后运行MySQL查询以删除具有该ID的人。

所以基本上,如果要删除用户,Bootbox的想法就是确认消息,我不想使用普通警报('')因为可以禁用它。

P.S。删除功能确实有效,我只想使用bootbox添加确认。

1 个答案:

答案 0 :(得分:1)

Bootstrap(以及Bootbox)模式不会生成阻塞事件,因此如果您希望在单击超链接时发生某些事情,则需要阻止默认行为(页面导航)。类似的东西:

<a href="?name=Jacob" class="alert_with_href">I have an href</a><br><br>
<script>
   $(document).ready(function() {
      $('a.alert_with_href').on('click', function(e) // <-- add an event variable
      {
        e.preventDefault(); // <-- prevent the event
        bootbox.alert("I am an alert!");
      });
   });
</script>

由于您说要确认某些内容,请使用bootbox.confirm和一些AJAX:

<a href="?name=Jacob" class="alert_with_href" data-name="Jacob">I have an href</a><br><br>
<script>
    $(document).ready(function() {
        $('a.alert_with_href').on('click', function(e) // <-- add an event variable
        {
            e.preventDefault(); // <-- prevent the event

            var data = { name = $(this).data('name') };
            bootbox.confirm("Really delete?", function(result){
                if(result){
                    $.post('your-url', data)
                        .done(function(response, status, jqxhr){
                            // do something when successful response
                        })
                        .fail(function(jqxhr, status, error){
                            // do something when failure response
                        });
                }// end if
            }); // end confirm
        });
    });
</script>

我还添加了一个数据属性,以便更容易获取发布值(不要使用GET请求执行删除操作)。我会假设您会在成功删除时重新加载页面,或者您可以使用.remove删除包含您要删除的项目的“行”