首页 > 其他 > 详细

关于 document.getElementById 一个奇怪的现象

时间:2016-08-13 22:25:48      阅读:192      评论:0      收藏:0      [点我收藏+]

html:

<html>
<head>
<script type="text/javascript" src="1.js"></script>
</head>
<body>
<input type="text" id="num1"/><br/>
<input type="text" id="num2"/><br/>
<input type="button" onclick="func1()" value=" + "/>
<input type="button" onclick="func1()" value=" - "/>
<input type="button" onclick="func1()" value=" * "/>
<input type="button" onclick="func1()" value=" / "/>
</body>
</html>

js:

function func1(){
var a=document.getElementById(‘num1‘).value;
alert(a);
}

可以正确的读取num1的内容,但是将js改为:

var a=document.getElementById(‘num1‘).value;

function func1(){

alert(a);
}

 就不能了,很奇怪,初学者搞不懂,求大神指点。

关于 document.getElementById 一个奇怪的现象

原文:http://www.cnblogs.com/yuanceo/p/5768988.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!