日期:2014-05-16 浏览次数:20539 次
A.html 如下
<div id="test" title="<?php echo $text_quote_open_window_title; ?>" style="top: 10px;
padding: 1px; width: 780px; height: 590px; display: none;">
</div>
js 如下
$("#test").window({
width: 780,
modal: true,
height: 590,
href: 'B.html'
});
<!DOCTYPE html>
<html style="width:100%;height:100%;overflow:hidden">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Window - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../themes/icon.css">
<link rel="stylesheet" type="text/css" href="demo.css">
<script type="text/javascript" src="../jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="../jquery.easyui.min.js"></script>
<script>
$(function () {
$("#test").window({
width: 780,
modal: true,
height: 590,
href: 'B.html'
});
});
</script>
</head>
<body>
<div id="test" title="abc" style="top: 10px;
padding: 1px; width: 780px; height: 590px;">
</div></body>
</html>
b.html<input type="button" value="close" onclick="$('#test').window('close')"/>