首先,JavaScript確認不是我在這裏尋找的。請詳細閱讀。 即通過傳遞給它的函數將onClick attr放到每個鏈接上,通過提醒正常系統對話框來確認用戶不是我想要的。如果用戶用戶用引導程序對話框確認它,重定向到相應的鏈接
我使用了bootstrap的對話框,而不是系統提供的常規對話框。
這裏有幾個刪除按鈕爲不同的項目
<a href="www.mysite.com/product/1" data-target="#myModal" data-toggle="modal"><i class="icon-remove"></i> Delete</a>
<a href="www.mysite.com/product/2" data-target="#myModal" data-toggle="modal"><i class="icon-remove"></i> Delete</a>
<a href="www.mysite.com/product/3" data-target="#myModal" data-toggle="modal"><i class="icon-remove"></i> Delete</a>
下面是顯示使用引導模式的標記。
<div class="modal small hide fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Confirm Delete ?</h3>
</div>
<div class="modal-body">
<p class="error-text"><i class="icon-warning-sign modal-icon"></i>Are you sure you want to Delete the Category and all its associated Properties?</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-danger" data-dismiss="modal">Delete</button>
</div>
</div>
的對話框顯示正確,但我無法重定向相當於上述在對話框中按下刪除鍵後,該模式只dissappears沒有重定向鏈接頁面。
OMG,這樣一個簡單的解決方案,這是你的代碼。那爲什麼我沒有想到時間...... :) :) – JayKandari