我有以下代码,如果存在行,我如何打开另一个页面作为模式窗口弹出窗口?
function editLesson(){
var row = $('#dg').datagrid('getSelected');
if (row){
// would like to open another page as modal window
}
}
任何帮助都是非常可观的。
我有以下代码,如果存在行,我如何打开另一个页面作为模式窗口弹出窗口?
function editLesson(){
var row = $('#dg').datagrid('getSelected');
if (row){
// would like to open another page as modal window
}
}
任何帮助都是非常可观的。
你可以使用fancybox插件。这是一个非常棒的插件。 http://fancybox.net/(请注意,fancybox 2 也已发布)
http://jsfiddle.net/kasperfish/5EV8r/109/
$.fancybox('hello');
您还可以在花式框(模态)窗口http://jsfiddle.net/kasperfish/5EV8r/110/中加载 iframe
$.fancybox([
'url'//url to your page
], {
'padding' : 10,
'type' : 'iframe',//set type to iframe
'overlayOpacity' : 0.7,
'overlayColor' : 'black',
'speedIn' : 900,
'speedOut' : 400,
'width' : '70%',
'height' : '50%'
});
您可以使用 JQuery 对话框
如此处所述:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
</head>
<body>
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</body>
</html>