还记得IE6.0.2600以前的美好日子吗?那时我们多喜欢搞这种代码来节省一个http请求啊:
<iframe src="about:<b style='color:red'>hello</b><script>alert(123)</script>"></iframe>
当然还有这样的
showModalDialog("about:<b style='color:red'>hello</b><script>alert(123)</script>")
在IE6.0.2600以后,大家就只好转向更兼容的写法了:
<iframe src="javascript:"<b style='color:red'>hello</b><script>alert(123)</script>""></iframe>
今天偶然发现,IE8正式版下面,久违的“about:”又可以显示和执行了呵呵。