6
A
回答
6
你也許可以做這樣的事情。
if (window.location.hash == "#imprint") {
$('#myModal').modal('show');
}
2
是的,這是可能的。只是檢查網址:
function popModal() {
// code to pop up modal dialog
}
var hash = window.location.hash;
if (hash.substring(1) == 'modal1') {
popModal();
}
2
只是爲了將來遊客/讀者,我創建了一個非常簡單的函數來打開一個模式動態而不需要知道你正在尋找確切的ID。如果沒有散列位置,它就會落空。
/**
* Function to open a bootstrap modal based on ID
* @param int
*/
function directLinkModal(hash) {
$(hash).modal('show');
}
/**
* Call the function on window load
* @param hash of the window
*/
directLinkModal(window.location.hash);
1
在失去了幾個小時後,我想出了這一個。基於點擊鏈接page-1打開page-2不同模式的解決方案。 HTML代碼基於Bootstrap官方Modal示例。
HTML |頁面1.HTML
<body>
<a href="http://yourwebsi.te/page-2.html?showmodal=1">
<a href="http://yourwebsi.te/page-2.html?showmodal=2">
</body>
JS | ShowModal.js
$(document).ready(function() {
var url = window.location.href;
if (url.indexOf('?showmodal=1') != -1) {
$("#modal-1").modal('show');
}
if (url.indexOf('?showmodal=2') != -1) {
$("#modal-2").modal('show');
}
});
HTML | page-2.html
<body>
<div class="modal fade bd-example-modal-lg" id="modal-1" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">Your content</div>
</div>
</div>
<div class="modal fade bd-example-modal-lg" id="modal-2" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">Your content</div>
</div>
</div>
<script src="ShowModal.js"></script>
</body>
相關問題
- 1. 直接模式單窗口? (emacs)
- 2. jquery鏈接打開模式窗口
- 3. Twitter BootStrap模式窗口後備鏈接
- 4. 直接鏈接到一個簡單的模式JQuery彈出窗口
- 5. 從動態導航鏈接在新窗口中打開鏈接
- 6. 阻止鏈接加載模態窗口中點擊的鏈接
- 7. 在textarea上顯示窗口的直接鏈接
- 8. 鏈接到來自URL的模式窗口
- 9. 我可以在引導彈出窗口中放置鏈接嗎?
- 10. html5視頻和引導模式窗口
- 11. 調整引導程序模式窗口
- 12. Twitter引導模式窗口閃爍
- 13. 引導模式窗口欄佈局
- 14. 引導模式窗口奇怪顯示
- 15. Twitter引導模式窗口不出現
- 16. 帶有表頭中的鏈接的引導彈出式窗口 - 鏈接不起作用
- 17. 鏈接到直接引導標籤無需滾動錨
- 18. 什麼是鏈接窗口?
- 19. 彈出窗口的鏈接
- 20. 要鏈接到新窗口
- 21. 在檢票模式窗口中打開外部鏈接
- 22. 基於鏈接的域創建模式窗口
- 23. 如何將href「關閉」鏈接添加到Fancybox模式窗口?
- 24. 在新窗口中打開Bootstrap模式中的鏈接
- 25. 如何使連接模式窗口
- 26. 非直接鏈接
- 27. 直接在所有窗口上繪圖直接屏幕
- 28. 直接鏈接到活動
- 29. Twitter引導:錨鏈接
- 30. 鏈接pe-i386引導區
是的,這是可能的。但這取決於你爲什麼以及如何使用鏈接。 – Khamidulla
我剛剛獲得了幾個星期的預先準備,我需要直接鏈接到其他服務的版本。但是我的印記在預壓的模態窗口中。這就是爲什麼 ;) – Marek123