模式窗口 跳转回当前页面,非打开新窗口
注:
1、如果你是IE6,你将<base target="_self"/>加入到<head>标签里就可以了。
2、如果你是IE7,你必须将<base target="_self"/>加入到<head>的对口中位置。
代码示例:
<html>
???? <head>
?????????? <title>test</title>
?????????? <base target="_self"/>
?????????? .............
???? </head>
</html>
?
ps:我的是IE9,加在</head><body>之间也是可以用的