<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <script> function test(){ var aa=document.getElementsByTagName("p"); var bb=document.getElementById("me").value; alert(bb); } </script> <title></title> </head> <body> <p id="me" name="hello" value="1243" >hello gril</p> <input type="button" onclick="test()"/> </body></html>我想获得<p>标签中id的值,也就是让alert(bb)输出的是me.
添加回答
举报
0/150
提交
取消