有没有办法将额外的数据传递给引导模式函数回调?
例如,假设我的导致模式打开的链接中有一个额外的属性,其中包含一些有用的数据,我如何引用该属性?
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.
});