87,994
社区成员
发帖
与我相关
我的任务
分享
showModalDialog('report.do?method=allControl','','dialogWidth:580px;dialogHeight:360px;help:no;scroll:yes;status:no');
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
<script src="../脚本/jquery-1.3.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$("#Button1").bind("click",function(){
window.open("HTMLPage2.htm","222","width:300px;height:200px","");
})
})
</script>
</head>
<body>
<input id="Button1" type="button" value="click" />
</body>
</html>