0

有没有办法将额外的数据传递给引导模式函数回调?

例如,假设我的导致模式打开的链接中有一个额外的属性,其中包含一些有用的数据,我如何引用该属性?

HTML

<span listid="80" href="#editTaskList" data-toggle="modal" class="btn btn-mini right"><i class="icon-edit"></i> Edit Task List</span>

JS

$('#editTaskList').on('show', function () {
    // get the source of the click, and then get the data i need.
});
4

3 回答 3

3

这对你有用吗?

<span listid="80" href="#editTaskList" data-toggle="datamodal" class="btn btn-mini right"><i class="icon-edit"></i> Edit Task List</span>
var $editTaskList = $('#editTaskList');

$('body').on('click.modal.data-api', '[data-toggle="datamodal"]', function (e) {
    var $this = $(this);
    $editTaskList.data('anyAttr',$this.data('anyAttr'));
    $editTaskList.modal('show');
    e.preventDefault();
})

$editTaskList.on('show', function () {
    var myData = $editTaskList.data('anyAttr');
});
于 2012-08-06T07:44:35.127 回答
2

我知道这是一个老问题,但这是我在谷歌上找到的第一件事。所以,我想在这里放一些重要的信息......

在调用模式之前,您需要将回调函数绑定到事件上,例如:

$('#modal').on('shown', function(){ 
     // Do something when the modal is loaded
});
$("#modal").modal();

这很重要,对我帮助很大,所以,这里是......

于 2014-02-04T13:29:33.173 回答
1

像这样 -

<span id="modal_opener" data-extrastuff="stuff" listid="80" href="#editTaskList" data-toggle="modal" class="btn btn-mini right"><i class="icon-edit"></i> Edit Task List</span>

$('#modal_opener').click(function() {
    var stuff_i_want = $(this).attr('data-extrastuff');
});
于 2012-08-06T02:29:30.000 回答