我正在使用jquery ui 选项卡来加载一个 html,在那个 html 中我有一个方法。
$("#tabs").tabs({
beforeLoad: function (event, ui) {
ui.jqXHR.error(function () {
ui.panel.html(
"Couldn't load this tab. We'll try to fix this as soon as possible. " +
"If this wouldn't be a demo.");
});
ui.jqXHR.success(function () {
alertMe()
});
}
});
<div id="tabs" style="height: 100%">
<ul>
<li><a href="Map.html">Tab 1</a></li>
</ul>
</div>
在 map.html 我有 alertMe 方法。在这里它显示 alertMe 是未定义的。