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 --请输入--
});
时间: 2024-11-08 19:04:15