首页上一页 1 下一页尾页 1 条记录 1/1页
JAVA WEB
发表在JavaWeb编程词典答疑
2017-10-08 悬赏:2 学分
是否精华
是
否
版块置顶:
是
否
通过document.getElementById获取元素 你看对吗
<html>
<head>
<script type="text/javascript">
function getValue()
{
var x=document.getElementById("myHeader")
alert(x.innerHTML)
}
</script>
</head>
<body>
<h1 id="myHeader" onclick="getValue()">This is a header</h1>
<p>Click on the header to alert its value</p>
</body>
</html>