我正在開發一個網頁。在網頁上是超鏈接,稱爲「查看頁面」。一旦點擊,目標是這將在模態對話框中顯示鏈接到頁面。如何啓用超鏈接打開模式對話框,同時允許在同一鏈接上的新標籤中打開
這裏是我使用這個實現代碼:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Test</title>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
<script>
function OpenModal() {
$("#divModal").dialog({
autoOpen: false, modal: true, title: 'Modal', width: 'auto', height: 'auto'
, buttons: { "Cancel": function() { $(this).dialog("close"); } },
}).dialog('open');
return false;
}
</script>
</head>
<body>
<a href="#" onclick="javascript:OpenModal();">View Page</a>
<div style="display:none;" id="divModal">
<iframe id="myIframe" src="SomeValidURL" width="1100" height="800" />
</div>
</body>
</html>
有沒有辦法類似於下面可以實現以允許用戶點擊右鍵查看頁面鏈接上的功能,選擇「在新標籤中打開」或在新窗口中打開並有SomeValidUrl在新的標籤頁或新窗口中打開?如果用戶左鍵點擊SomeValidUrl頁面應該在模式對話框中打開。
我會刪除'onclick',然後使用正常的點擊事件,然後檢測它是什麼類型的點擊事件(左,右或中)並作出相應的反應。 (提示:你只想打開左鍵單擊模式)。還需要將該url添加到href。 – 2013-03-14 15:44:26
所有你得到的原因是在選項卡中打開的主頁,是因爲你的'href =「#」'。 – Sunyatasattva 2013-03-14 15:58:52