搞了一天,终于把A里面的属性弄出来 代码1: <!-- var A = document.createElement("A"); A.setAttribute("href","#"); A.appendChild(document.createTextNode("一些文字")); document.getElementsByTagName("BODY")[0].appendChild(A); //--> [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 代码2: New Document 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"; } } [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]