我正在使用 JQuery 动态附加 GWT 脚本,然后使用 JQuery 历史记录跟踪历史记录。
问题:我的 GWT 模块生成History
令牌,因为我所有的 GWT 模块都是 MVP 模块。并且 onClick()
s of MenuItem
s 动态加载 GWT 模块,同时我正在添加MenuItems
使用 JQuery 的历史记录。但我的 GWT 模块也使用History
. 现在的问题是,如果我反复单击MenuItem
which GWT MVP modules
loading ,我的浏览器会被击中。
代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/newclickmenu/jquery.history.js"></script>
// Contains code which creates menuItems using JSTL. In this menuItem there will be menuItem and *subMenuItem(onclick of menuItem there will be a slideDown which would show subMenuItem
<script type="text/javascript">
jQuery(window).load(function() {
$('body').on('click', '#subMenuItem', function(event) {
// onClick of subMenuItem(which is anchor) then it add the History and will invoke the GWT mvp module.
// After doing the push then below `$.history.on('load change push', function(event, url, type) {` line is called.
$.history.push($(this).attr("href"));
event.preventDefault();
});
$.ajaxSetup({ cache: true });
$.history.on('load change push', function(event, url, type) {
if (event.type == "load") {
if (url.split("!").length < 2) {
window.location = url;
}
} else {
// This code will add the GWT module dynamically.
if (typeof url !== undefined && url !== null && url !== "") {
// Remove the old GWT script and append the new script
var previousModule = $(".mainModule");
if (previousModule.parent().length !== 0) {
$(previousModule).remove();
}
var expectedUrl = "<script class='mainModule' src='/Masters/Masters.cache.js'/>";
$('head').append($(expectedUrl));
}
}
)};
}).listen('hash');
</script>