Javascript 常用方法:document.getElementById(" ")
document.getElementById("") 返回对拥有指定id的第一个对象的引用。
<tr><th>id</th><th>name</th><th>age</th><th>address</th></tr>
<tr><th>1</th><th>zhangsan</th><th id="age">24</th><th>江苏南京</th></tr>
<tr><th>2</th><th>lisi</th><th id="age">26</th><th>上海闵行</th></tr>
$(function(){
var obj = document.getElementById("age");
alert(obj.innerHTML); // IE Google Firefox 24
alert(obj.innerText); // IE Google 24 // Firefox undefined
});
<input type = "text" id = "text" value = "--请输入--"/>
<input type = "button" id = "button" value = "弹出text值">
$("#button").click(function(){
var objText = document.getElementById("text");
alert(objText.value); // IE Google Firefox --请输入--
});
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。