作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 jquery ui tab加载 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 未定义。
最佳答案
当服务器成功返回响应时调用 jqXHR“成功”,但在任何选项卡呈现逻辑发生之前(如将 html/js 添加到页面)。所以更好的解决方案是使用选项卡控件的加载方法来处理调用:
$('tab's).tabs({
beforeLoad: ...
load: function() {
alertMe(); // Global JS on loaded fragment will be available on page now
}
});
关于javascript - 我如何从 ajax 加载的 JQuery ui 选项卡中获取此方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16198118/
我是一名优秀的程序员,十分优秀!