<!-- http://bbs.knowsky.com-->
<!--完成此效果需要两步
第一步:把下面代码放到<head>区域中-->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function checkImage(loc) {
loc = "image-popup.html?" + loc;
windowprops = 'menubar=0,toolbar=0,status=0,location=0';
popupWindow = open(loc, 'previewWin', windowprops);
if (popupWindow.opener == null)
popupWindow.opener = self;
}
// End -->
</script>
<!--第二步:把下面代码放到<body>区域中-->
<div align="center">
<form name=dimform>
请输入你所要显示的图片的路径:<br>
<input type=text name=url size=40 value="http://">
<input type=button value="OK" onClick="checkImage(this.form.url.value);">
<p>
检测结果:<p>
宽度 = <input type=text name=width><br>
高度 = <input type=text name=height>
</form>
</div>