<!DOCTYPE HTML><html> ?<head> ?<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> ?<title>JavaScript</title> ?</head> ?<body> ?? ??? ? ? ? <form name="Input">? ? ? ? ? ? <table align="center" width="500px" height="50%" border="1">? ? ? ? ? ? ? ? <tr>? ? ? ? ? ? ? ? ? ? <td align="center" width="100px">? ? ? ? ? ? ? ? ? ? ? ? 學(xué)號:? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? ? ? <td align="center" width="300px">? ? ? ? ? ? ? ? ? ? ? ? <input type="text" id=userid name="user" onblur="validate();">? ? ? ? ? ? ? ? ? ? ? ? <div id=usermsg></div>? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? </tr>? ? ? ? ? ? ? ? <tr>? ? ? ? ? ? ? ? ? ? <td align="center" width="100px">? ? ? ? ? ? ? ? ? ? ? ? 姓名:? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? ? ? ? ? <td align="center">? ? ? ? ? ? ? ? ? ? ? ? <input type="text" name="name">? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? </tr>? ? ? ? ? ? ? ? <tr>? ? ? ? ? ? ? ? ? ? <td align="center" width="%45">? ? ? ? ? ? ? ? ? ? ? ? 性別:? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? ? ? <td align="center">? ? ? ? ? ? ? ? ? ? ? ? <input type="radio" name="sex" value="男">? ? ? ? ? ? ? ? ? ? ? ? 男? ? ? ? ? ? ? ? ? ? ? ? <input type="radio" name="sex" value="女">? ? ? ? ? ? ? ? ? ? ? ? 女? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? </tr>? ? ? ? ? ? ? ? <tr>? ? ? ? ? ? ? ? ? ? <td align="center" width="30%">? ? ? ? ? ? ? ? ? ? ? ? 年齡:? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? ? ? <td align="center" width="300px">? ? ? ? ? ? ? ? ? ? ? ? <input type="text" name="age">? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? </tr>? ? ? ? ? ? ? ? <tr>? ? ? ? ? ? ? ? ? ? <td align="center" width="100px">? ? ? ? ? ? ? ? ? ? ? ? 地址:? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? ? ? <td align="center" width="300px">? ? ? ? ? ? ? ? ? ? ? ? <input type="text" name="addr">? ? ? ? ? ? ? ? ? ? </td>? ? ? ? ? ? ? ? </tr>? ? ? ? ? ? </table>? ? ? ? </form>? ? ? ? <h1 id="myHead" onclick="getValue()">? ? ? ? ? ? 看看三種獲取節(jié)點(diǎn)的方法?? ? ? ? </h1>? ? ? ? <p>? ? ? ? ? ? 點(diǎn)擊標(biāo)題彈出它的值。? ? ? ? </p>? ? ? ? <input type="button" onclick="getElements()"? ? ? ? ? ? value="看看name為sex的節(jié)點(diǎn)有幾個?" />? ? ? ? <Br>? ? ? ? <input type="button" onclick="getTagElements()"? ? ? ? ? ? value="看看標(biāo)簽名為input的節(jié)點(diǎn)有幾個?" />? ? ? ? ? ??? ? ?<script type="text/javascript">? ? ? ? ?function getValue()? ? ? ? ? {? ? ? ? ? ? ? var myH=document.getElementById("myHead");? ? ? ? ? ? ? (myH.innerHTML);? ? ? ? ? }? ? ? ? ? function getElements()? ? ? ? ? {? ? ? ? ? ? ?var mys=document.getElementsByName("sex");? ? ? ? ? ? ? alert(myS.length);? ? ? ? ? }? ? ? ? ? function getTagElements()? ? ? ? ? {? ? ? ? ? ? ? var myI=document.getElementsByTagName(input);? ? ? ? ? ? ? alert(myI.length);? ? ? ? ? }? ? ? ? ?? ? ?</script> ? ? ? ?? ? </body></html>
完全沒有反應(yīng)啊 檢查不出來了 就大神
忽如遠(yuǎn)行客_
2016-07-23 12:25:27