我有这种使用 JQuery 的有线情况。我的网站上有三个页面。
- 索引.html
- 业务.html
- 操作.htmls
当我打开 business.html URL 是firefox时,它会像这样打开
http://localhost:9090/Operational/business.html
当我单击此页面上名为“operation.html”的按钮时,它会打开一个带有以下地址的新页面
http://localhost:9090/Operational/operation.html
到目前为止一切都很好。但是当我在 IE 9 中打开相同的 operation.html 页面时,URL 是不常用的:
http://localhost:9090/Operational/business.html#/Operational/Operations.html
为什么会这样?有人可以对此有所了解吗?我被卡住了:P @!!!!
添加更多细节
我正在使用一个名为 tiggzi 的开发工具。这是代码的锚定部分。
$('#j_2 [name="mobilenavbaritem4_141"]').die().live({
click: function () {
if (!$(this).attr('disabled')) {
Tiggr.navigateTo('Operations', {
transition: 'slide',
reverse: false
});
}
}
});