发布于 2017-06-19 02:46:45 | 122 次阅读 | 评论: 0 | 来源: 网友投递
微软IE浏览器
ie(微软公司出品的网页浏览器) 即 Internet Explorer 。
Internet Explorer,原称Microsoft Internet Explorer和Windows Internet Explorer,简称 IE,是微软公司推出的一款网页浏览器。
<a href=http://www.phperz.com target="_blank" id="aa">ok</a>
<script>
var comment = document.getElementById('aa');
if (document.all) {
comment.click();
} else { //火狐,如果<a>中没有定义onclick事件,则本段对火狐不起作用
var ev = document.createEvent("MouseEvents");
ev.initEvent("click", true, true);
document.getElementById("aa").dispatchEvent(ev);
}
</script>
<form action="/shopping/index" method="post" id="processorder" target="_blank" onsubmit="return checkOrder()">
<input name="button2" type="submit" id="button2" value="" class="ck_lijisn" />
</form>