artDialog包---html和js完成弹出窗口和跳转

时间:2022-07-13 23:41:36

直接上代码

<html><head>
<link href="dialog.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript" src="dialog.js"></script>
</head>
<body>
<input type="button" value="点击按钮" onclick="javascript:click_show();"></input>
<script type="text/javascript">
function click_show(){
artDialog(
{
lock:true,
style:'succeed noClose',
iframe:'http://wap.hupu.com/'
},
function(){
alert('确认');
},
function(){
alert('取消');
}
);
}
</script>
</body></html>

效果如下

自己看这个链接吧 http://www.mb5u.com/jscode/html/ajax/426_artDialog2_0_4/