JQueryを使用して、この有線の状況があります。私のウェブサイトには 3 つのページがあります。
- index.html
- ビジネス.html
- operation.htmls
business.html URL is firefoxを開くと、このように開きます
http://localhost:9090/Operational/business.html
このページの「operation.html」というボタンをクリックすると、次のアドレスの新しいページが開きます
http://localhost:9090/Operational/operation.html
今まで大丈夫です。しかし、同じ operation.html ページを IE 9 で開くと、URL が異常になります。
http://localhost:9090/Operational/business.html#/Operational/Operations.html
これはなぜですか?誰かがこれに光を当てることができますか?私は立ち往生しています:P @ !!!!
詳細を追加する
私はtigziという開発ツールを使用しています。これがコードの固定部分です。
$('#j_2 [name="mobilenavbaritem4_141"]').die().live({
click: function () {
if (!$(this).attr('disabled')) {
Tiggr.navigateTo('Operations', {
transition: 'slide',
reverse: false
});
}
}
});