我一直在寻找一个简单的解决方案。我想在JQuery UI对话框窗口中显示一个页面(例如http://www.google.com)。计划是稍后动态添加URL,以便我的站点中的所有链接都将显示在所述窗口中。
我尝试了以下操作,但点击链接时对话窗口为空。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Test</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<script>
$(document).ready(function() {
$('#openwindow').each(function() {
var $link = $(this);
var $dialog = $('<div></div>')
.load($link.attr('href'))
.dialog({
autoOpen: false,
title: $link.attr('title'),
width: 500,
height: 300
});
$link.click(function() {
$dialog.dialog('open');
return false;
});
});
});
</script>
</head>
<body>
<a id="openwindow" href="http://www.google.com">Click me to test.</a>
</body>
</html>
我找到了一些例子,但没有一个真正奏效。我真的很感激一些帮助。
提前致谢。
答案 0 :(得分:14)
您不需要提供iframe
,但您应该阅读有关对话框here的文档。
相反,您需要在.open
属性
$( "#openwindow" ).dialog({
open: function(event, ui) {
$('#divInDialog').load('test.html', function() {
alert('Load was performed.');
});
}
});
此外,您似乎将.each
与id
一起使用 - id
在页面中应该是唯一的。请改用class
。
答案 1 :(得分:6)
你可以试试这个
$(function(){
$('a').on('click', function(e){
e.preventDefault();
$('<div/>', {'class':'myDlgClass', 'id':'link-'+($(this).index()+1)})
.load($(this).attr('href')).appendTo('body').dialog();
});
});
上述代码会在您点击页面上的任何链接时创建新的dialog
,并为每个对话框添加类名myDlgClass
和唯一ID,例如link-1
,{{1等等,但请记住,由于相同的原始策略,只会加载页面链接而不是外部链接。
要使用外部网站链接,您可以使用link-2
,此处为an example using iframe。
答案 2 :(得分:1)
This
可能有帮助..这里我正在做的是我在一个链接上徘徊,网址在对话框中打开..
如果动态创建了多个相同的标记,则应使用class
而不是id
。此时它只适用于单个id
。
$('.openwindow').click(function(){
var $this=$(this);
$.ajax({
url: $this.attr('href');//You got the link here
success: function(data) {
//show the dialog here..
//"data" contains the html returned by the url
},
error: function(jqXHR){
//Do something here
}
});
});
答案 3 :(得分:0)
您可以使用iframe:
$("#iframeId").attr("src", $(this).attr("href"));
$('#dialogId').dialog('open');
<div id="divId" >
<IFRAME id="iframeId" SRC="" width="" height = "" >
</div>