使用DOM获取页面中某控件的属性的js代码如何写呢?
html xmlns=http://www。w3。org/1999/xhtml headtitle标题页-学无忧(www。xue51。com)/titlescript type=text/javascriptfunction testa() { var mydom=document。 getElementById(btn1);//获取指定ID的DOM对象 var myattri=mydom。 getAttribute(type); //获取元素的类型 alert( 按钮的英文类型是:+myattri); }/script/headbody form id=form1 runat=ser...全部
html xmlns=http://www。w3。org/1999/xhtml headtitle标题页-学无忧(www。xue51。com)/titlescript type=text/javascriptfunction testa() { var mydom=document。
getElementById(btn1);//获取指定ID的DOM对象 var myattri=mydom。
getAttribute(type); //获取元素的类型 alert( 按钮的英文类型是:+myattri); }/script/headbody form id=form1 runat=server input id=btn1 type=button value=test onclick=testa()/ /form/body/html。收起