将数据传递到引导模式


526

我有几个超链接,每个超链接都有一个ID。当我单击此链接时,我想打开一个模式(http://twitter.github.com/bootstrap/javascript.html#modals),并将此ID传递给模式。我在Google上进行了搜索,但找不到任何可以帮助我的东西。

这是代码:

<a data-toggle="modal" data-id="@book.Id" title="Add this item" class="open-AddBookDialog"></a>

哪个应该打开:

<div class="modal hide" id="addBookDialog">
    <div class="modal-body">
        <input type="hidden" name="bookId" id="bookId" value=""/>
    </div>
</div>

这段代码:

$(document).ready(function () {
    $(".open-AddBookDialog").click(function () {
        $('#bookId').val($(this).data('id'));
        $('#addBookDialog').modal('show');
    });
});

但是,当我单击超链接时,没有任何反应。当我提供超链接时<a href="#addBookDialog" ...>,模式可以很好地打开,但是它不包含任何数据。

我遵循以下示例:如何将值参数传递给Bootstrap中的modal.show()函数

(我也尝试过这种方法:如何在模式对话框中设置输入值?

Answers:


533

我认为您可以使用jQuery的.on事件处理程序来完成这项工作。

这是您可以测试的小提琴;只需确保在小提琴中尽可能扩展HTML框架,以便您可以查看模式。

http://jsfiddle.net/Au9tc/605/

的HTML

<p>Link 1</p>
<a data-toggle="modal" data-id="ISBN564541" title="Add this item" class="open-AddBookDialog btn btn-primary" href="#addBookDialog">test</a>

<p>&nbsp;</p>


<p>Link 2</p>
<a data-toggle="modal" data-id="ISBN-001122" title="Add this item" class="open-AddBookDialog btn btn-primary" href="#addBookDialog">test</a>

<div class="modal hide" id="addBookDialog">
 <div class="modal-header">
    <button class="close" data-dismiss="modal">×</button>
    <h3>Modal header</h3>
  </div>
    <div class="modal-body">
        <p>some content</p>
        <input type="text" name="bookId" id="bookId" value=""/>
    </div>
</div>

JAVASCRIPT

$(document).on("click", ".open-AddBookDialog", function () {
     var myBookId = $(this).data('id');
     $(".modal-body #bookId").val( myBookId );
     // As pointed out in comments, 
     // it is unnecessary to have to manually call the modal.
     // $('#addBookDialog').modal('show');
});

2
当我只有一个超链接,但我有多个超链接,每个超链接都有自己的ID时,这种方法可以正常工作。我添加了另一个带有另一个ID的超链接,但是模式始终具有第一个超链接的ID。
里昂·卡伦斯

1
@LeonCullens-我更新了小提琴和代码。它按您现在想要的方式工作吗?
mg1075'5

2
好的答案-但这是modal('show')必需的吗?好像data-toggle="modal"链接上的可以解决这个问题。
Technophobia

7
只是$(this).data('id');它本身是无价的!我不知道您可以由此获得数据属性。我每天都更爱自举!= P
Manatax

23
@Manatax- $(this).data()是jQuery的一部分。api.jquery.com/data/#data-html5
mg1075

365

如果您使用的是Bootstrap 3.2.0,这是一种更干净的方法。

连结HTML

<a href="#my_modal" data-toggle="modal" data-book-id="my_id_value">Open Modal</a>

模态JavaScript

//triggered when modal is about to be shown
$('#my_modal').on('show.bs.modal', function(e) {

    //get data-id attribute of the clicked element
    var bookId = $(e.relatedTarget).data('book-id');

    //populate the textbox
    $(e.currentTarget).find('input[name="bookId"]').val(bookId);
});

http://jsfiddle.net/k7FC2/


1
$(e.currentTarget).find('input [name =“ bookId”]')。val(bookId); 你能告诉我这是做什么的吗?因此,如果模式是开放的,则意味着输入名称bookId的值是单击它的值,对吗?
treblaluch '16

@treblaluch e.currentTarget是clicked元素,它是从click事件中获取的e。该行会找到一个input具有名称的,bookId并在其上设置值。
aalaap

5
更换 $(this)$(e.relatedTarget)的伟大工程
穆罕默德Ibnuh

1
这很棒,也适用于Bootstrap 4
jarrettyeo,

36

这是我通过@ mg1075的代码实现它的方式。我想要一些通用的代码,以便不必将类分配给模式触发器链接/按钮:

在Twitter Bootstrap 3.0.3中测试。

的HTML

<a href="#" data-target="#my_modal" data-toggle="modal" data-id="my_id_value">Open Modal</a>

JAVASCRIPT

$(document).ready(function() {

  $('a[data-toggle=modal], button[data-toggle=modal]').click(function () {

    var data_id = '';

    if (typeof $(this).data('id') !== 'undefined') {

      data_id = $(this).data('id');
    }

    $('#my_element_id').val(data_id);
  })
});

2
您可以使用!! $(this).data('id') 代替typeof $(this).data('id') !== 'undefined'
Haseeb Zulfiqar,2015年

13

如果您使用的是Bootstrap 3+,那么使用Jquery可以将其进一步缩短。

的HTML

<a href="#" data-target="#my_modal" data-toggle="modal" class="identifyingClass" data-id="my_id_value">Open Modal</a>

<div class="modal fade" id="my_modal" tabindex="-1" role="dialog" aria-labelledby="my_modalLabel">
<div class="modal-dialog" role="dialog">
    <div class="modal-content">
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
            <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
        </div>
        <div class="modal-body">
            Modal Body
            <input type="hidden" name="hiddenValue" id="hiddenValue" value="" />
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">No</button>
            <button type="button" class="btn btn-primary">Yes</button>
        </div>
    </div>
</div>

JQUERY

<script type="text/javascript">
    $(function () {
        $(".identifyingClass").click(function () {
            var my_id_value = $(this).data('id');
            $(".modal-body #hiddenValue").val(my_id_value);
        })
    });
</script>

10

您的代码将使用正确的模式html结构。

$(function(){
  $(".open-AddBookDialog").click(function(){
     $('#bookId').val($(this).data('id'));
    $("#addBookDialog").modal("show");
  });
});
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>


<a data-id="@book.Id" title="Add this item" class="open-AddBookDialog">Open Modal</a>

<div id="addBookDialog" class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-body">
       <input type="hidden" name="bookId" id="bookId" value=""/>
      </div>
    
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</html>


9

引导4.3 -从下面的代码片段使用的代码-更这里


1

这是将id_data发送到模态的方法:

<input
    href="#"
    data-some-id="uid0123456789"
    data-toggle="modal"
    data-target="#my_modal"
    value="SHOW MODAL"
    type="submit"
    class="btn modal-btn"/>

<div class="col-md-5">
  <div class="modal fade" id="my_modal">
   <div class="modal-body modal-content">
     <h2 name="hiddenValue" id="hiddenValue" />
   </div>
   <div class="modal-footer" />
</div>

和javascript:

    $(function () {
     $(".modal-btn").click(function (){
       var data_var = $(this).data('some-id');
       $(".modal-body h2").text(data_var);
     })
    });

1

试试这个

$(function(){
 //when click a button
  $("#miButton").click(function(){
    $(".dynamic-field").remove();
    //pass the data in the modal body adding html elements
    $('#myModal .modal-body').html('<input type="hidden" name="name" value="your value" class="dynamic-field">') ;
    //open the modal
    $('#myModal').modal('show') 
  })
})

但是,如果您关闭对话框,然后为其他元素打开它,该怎么办...您将添加2个隐藏字段,一旦发送对话框的表单,便会一团糟
Pitzas

0

您可以尝试simpleBootstrapDialog。在这里您可以传递标题,消息,取消和提交的回调选项等。


4
欢迎使用Stack Overflow!虽然链接是共享知识的好方法,但是如果将来它们断开,它们将无法真正回答问题。在回答中添加回答问题的链接的基本内容。如果内容太复杂或太大而无法容纳在此处,请描述所提出解决方案的总体思路。请记住,始终保留指向原始解决方案网站的链接参考。请参阅:我如何写一个好的答案?
sɐunıɔןɐqɐp

0

使用jQuery很简单:

如果下面是您的定位链接:

<a data-toggle="modal" data-id="@book.Id" title="Add this item" class="open-AddBookDialog"></a>

在模态的显示事件中,您可以访问如下所示的anchor标签

//triggered when modal is shown
$('#modal_id').on('shown.bs.modal', function(event) {

    // The reference tag is your anchor tag here
    var reference_tag = $(event.relatedTarget); 
    var id = reference_tag.data('id')
    // ...
    // ...
})

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.