我有兩個模式我想顯示何時右邊的片段在URL中,所以domain.com#steg2
加載模態#steg2和domain.com#steg3
加載模態#steg3。基於URL打開模式#
我的腳本:
$(function() {
if (window.location.hash.indexOf("steg2") !== -1) {
$("#steg2").modal();
}
if (window.location.hash.indexOf("steg3") !== -1) {
$("#steg3").modal();
}
});
這是我的情態動詞是如何buildt:
<div class="modal fade" id="steg2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal fade" id="steg3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
兩種模態都在同一頁/ URL。我究竟做錯了什麼?網站使用引導程序3和jQuery。
謝謝你,我想你的建議,但沒有模式顯示當我輸入domain.com#steg2的。關於我可能做錯什麼的想法? – mrleira 2014-10-31 21:07:54