我有一个引导模式调用:
<a href='/urltoloadcontentfrom' data-toggle="modal" data-target="#driverprofile">View Driver Information</a>
页面显示如下需要可编辑的url
<a href="#" class="editable" data-type="text" data-pk="1" data-url="/post" data-title="Enter username" data-mode="inline">Link Here</a>
我需要绑定“可编辑”。我通常用
$('.editable').editable();
我尝试使用以下方法对其进行初始化:
$('#driverprofile').on('shown', function () {
$('.editable').editable();
});
但这似乎在显示内容并且未初始化之前触发。
有任何想法吗?
我正在使用的“可编辑”库:http: //vitalets.github.io/x-editable/