如果用户用户使用引导程序对话框确认,则重定向到相应的链接

时间:2013-09-22 09:24:37

标签: javascript html css twitter-bootstrap redirect

首先,javascript确认不是我在这里寻找的。请仔细阅读。 即将onClick attr放到每个链接上并传递一个函数,通过警告正常的系统对话框来确认用户不是我想要的。

我使用了bootstrap的对话框,而不是系统提供的常规对话框。

这里是不同项目的几个删除按钮

<a href="www.mysite.com/product/1" data-target="#myModal"  data-toggle="modal"><i class="icon-remove"></i> Delete</a>
<a href="www.mysite.com/product/2" data-target="#myModal"  data-toggle="modal"><i class="icon-remove"></i> Delete</a>
<a href="www.mysite.com/product/3" data-target="#myModal"  data-toggle="modal"><i class="icon-remove"></i> Delete</a>

下面是使用Bootstrap显示模态的标记。

<div class="modal small hide fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">Confirm Delete ?</h3>
  </div>
<div class="modal-body">
  <p class="error-text"><i class="icon-warning-sign modal-icon"></i>Are you sure you want to Delete the Category and all its associated Properties?</p>
  </div>
  <div class="modal-footer">
    <button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
    <button class="btn btn-danger" data-dismiss="modal">Delete</button>
  </div>
</div>

对话框显示正确,但在按对话框中的删除按钮后,我无法重定向到与上面链接对应的页面,模式只是消失而不重定向。

3 个答案:

答案 0 :(得分:5)

只需将类remove-item添加到您的链接,然后将此脚本添加到您的页面即可。很干净。

<script>
$(function () {
  $('a.remove-item').click(function () {
    var url = this.href;
    $('#myModal .btn-danger').click(function () {
      window.location.href = url;
    });
  });
});
</script>

答案 1 :(得分:3)

Working Demo Here

您需要将此javascript代码添加到您的网页:

    $(".delBtn").click(function() {
        $("#delConfirmBtn").attr("href", $(this).attr("href"));
        $("#delConfirm").modal('toggle');
        return false;
    });

这是页面链接:

<a href="del_products.html?idproduct=1" class="delBtn btn btn-default">Delete</a>

这是模态链接:

<a href="#" id="delConfirmBtn" class="btn btn-danger">Delete</a>

这是模态代码:

  <!-- Modal -->
  <div class="modal fade" id="delConfirm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
          <h4 class="modal-title">Delete product</h4>
        </div>
        <div class="modal-body">
            <p>Lorem ipsum.</p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
          <a href="#" id="delConfirmBtn" class="btn btn-danger"><i class="icon-trash"></i> Delete</a>
        </div>
      </div><!-- /.modal-content -->
    </div><!-- /.modal-dialog -->
  </div><!-- /.modal -->

您可以在JSFiddle

上看到您的代码

答案 2 :(得分:2)

在引导标记中添加数据属性并向服务器发送ajax请求,这样就可以删除项目而无需动态刷新页面。

<div class="modal small hide fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h3 id="myModalLabel">Confirm Delete ?</h3>
  </div>
<div class="modal-body">
  <p class="error-text"><i class="icon-warning-sign modal-icon"></i>Are you sure you want to Delete the Category and all its associated Properties?</p>
  </div>
  <div class="modal-footer">
    <a class="btn" data-dismiss="modal" aria-hidden="true">Cancel</a>
    <a class="btn btn-danger" data-action="delete-item" data-item="XXX" data-dismiss="modal">Delete</a>
  </div>
</div>

现在使用jquery或javascript,您可以向服务器发送请求以执行data-item我已指定为XXX的删除操作。

如果您通过像

这样的javascript方法生成数据项,则动态添加数据项将很容易
function show_dialog_for(item_id)
{
   //your code here to generate and show the model
   //Bind the ajax method to send the delete request for the item_id
   $("a[data-action]").bind( "click", function() {
      //Send request for deletion
   });
}

现在你必须将它与该链接的点击事件绑定,就像 -

一样
$(".remove-item").bind( "click", function() {
   show_dialog_for($this.prop("data-item"));
});

对于以下链接 - 我在其中添加了一个类属性“remove-item”和带有XXX的数据项

<a href="www.mysite.com/product/1" class="remove-item" data-item="XXX" data-target="#myModal"  data-toggle="modal"><i class="icon-remove"></i> Delete</a>

希望这会对你有所帮助。