将数据传递给bootstrap模式

本文翻译自:Passing data to a bootstrap modal

I've got a couple of hyperlinks that each have an ID attached. 我有几个超链接,每个超链接都附有一个ID。 When I click on this link, I want to open a modal ( http://twitter.github.com/bootstrap/javascript.html#modals ), and pass this ID to the modal. 当我点击此链接时,我想打开一个模态( http://twitter.github.com/bootstrap/javascript.html#modals ),并将此ID传递给模态。 I searched on google, but I couldn't find anything that could help me. 我搜索谷歌,但我找不到任何可以帮助我的东西。

This is the code: 这是代码:

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

Which should open: 哪个应该打开:

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

With this piece of code: 有了这段代码:

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

However, when I click the hyperlink, nothing happens. 但是,当我单击超链接时,没有任何反应。 When I give the hyperlink <a href="#addBookDialog" ...> , the modal opens just fine, but it does't contain any data. 当我给超链接<a href="#addBookDialog" ...> ,模态打开就好了,但它不包含任何数据。

I followed this example: How to pass values arguments to modal.show() function in Bootstrap 我按照这个例子: 如何将值参数传递给Bootstrap中的modal.show()函数

(and I also tried this: How to set the input value in a modal dialogue? ) (我也试过这个: 如何在模态对话框中设置输入值?


#1楼

参考:https://stackoom.com/question/iaXN/将数据传递给bootstrap模式


#2楼

I think you can make this work using jQuery's .on event handler. 我认为你可以使用jQuery的.on事件处理程序来完成这项工作。

Here's a fiddle you can test; 这是你可以测试的小提琴; just make sure to expand the HTML frame in the fiddle as much as possible so you can view the modal. 只需确保尽可能扩展小提琴中的HTML框架,以便查看模态。

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

HTML 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 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');
});

#3楼

Here's how I implemented it working from @mg1075's code. 以下是我使用@ mg1075代码实现它的方法。 I wanted a bit more generic code so as not to have to assign classes to the modal trigger links/buttons: 我想要一些更通用的代码,以便不必为模态触发链接/按钮分配类:

Tested in Twitter Bootstrap 3.0.3. 在Twitter Bootstrap 3.0.3中测试。

HTML HTML

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

JAVASCRIPT 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);
  })
});

#4楼

Here is a cleaner way to do it if you are using Bootstrap 3.2.0 . 如果您使用的是Bootstrap 3.2.0,这是一种更简洁的方法

Link HTML 链接HTML

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

Modal JavaScript 模态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/ http://jsfiddle.net/k7FC2/


#5楼

If you are on bootstrap 3+, this can be shortened a bit further if using Jquery. 如果你在bootstrap 3+上,如果使用Jquery,这可以进一步缩短。

HTML 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 JQUERY

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

#6楼

Your code would have worked with correct modal html structure. 您的代码可以使用正确的模态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> 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值