我想应用一个 jQuery tabs
做一个动态加载的内容。问题是该tabs
函数是在容器加载之前应用的,所以我看不到渲染的选项卡。调试我等不及了,它成功了。
我的背景是一个主/细节网格,将细节显示为可扩展的行。每次单击网格行时,我都会通过 ajax 向另一个名为的页面询问详细信息,mypage.aspx
然后将接收到的数据放入一个实际上是动态生成的div
命名的. 获得数据后,我想在 mypage.aspx 内容上应用该函数。contentDetail
tr
tabs
这是我的代码:
var html = '<tr id="newRow"><td colspan="4"><div id="contentDetail"></div></td></tr>';
$('#mygrid tr').each(function () {
$(this).on('click', function () {
// I create a row on the fly and append it next to the clicked row
// ...
// I load the contents
$('#contentDetail').load('mypage.aspx #div1', { data: '123' }, function (response, status, xhr) {
if (status == "error") {
// ERROR
}
});
// Here I want to apply the tabs
$('#contentDetail').ready(function () {
$('.tabs').tabs();
});
});
更新:
$.when($('#contentDetail').load('mypage.aspx #div1', { data: '123' }, function (response, status, xhr) {
if (status == "error") {
// ERROR
}
})).then($.getScript('Scripts/function.js'));
函数.js:
$('#tabs').tabs();