document.createElement("A")比较不错的属性 时间:2020-05-12 人气:0 搞了一天,终于把A里面的属性弄出来 代码1: <script LANGUAGE="JavaScript"> </script> [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]代码2: New Document <script> function newelement(){ var a=document.createElement("a"); a.href="javascript:alert('A link.')"; a.innerHTML="aaa"; var img=new Image(); img.src="http://img.baidu.com/img/post-jg.gif"; img.style.border="none"; a.appendChild(img) document.getElementById("oData").appendChild(a); img.onmouseover=function(){ this.src="http://www.baidu.com/img/sslm1_logo.gif"; } img.onmouseout=function(){ this.src="http://img.baidu.com/img/post-jg.gif"; } } </script> [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 加载全部内容