$("#shengchanriqi<%=currentrec%>").val(值)
"作为变量传递":用一个变量保存这个ID就好。比如点击元素A,元素A的ID:id_a。然后在click事件里面,赋值给这个变量,如果你是里面又调用方法,那就不用保存这个ID直接给下一层用就好了
function main(str_value,str_span)
{
//alert(str_span)
var str_spanvar = str_span
//alert(document.getElementById(str_spanvar))
//alert(document.getElementById(str_spanvar).innerHTML)
//alert("str_span")
//alert(document.test.str_span)
//s = 'str_span'
if(str_value.length==0)
{
alert('用户名为空')
document.getElementById(str_spanvar).innerHTML ='123'
return
}
xmlHttp = GetxmlHttpObject()
if(xmlHttp == null)
{
alert('你的浏览器不支持AJAX')
return
}
//else{alert('pass')}
var url = 'php.php'+'?q='+str_value+'&sid='+Math.random()
//alert(url)
xmlHttp.onreadystatechange = stateChange
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
扩展资料:js document.getElementById的用法详解
语法:oElement = document . getElementById ( sID )
参数:sID――必选项。字符串 (String) 。
返回值:oElemen――对象 (Element) 。
说明:根据指定的 id 属性值得到对象。返回 id 属性值等于 sID 的第一个对象的引用,假如对应的为一组对象,则返回该组对象中的第一个,如果无符合条件的对象,则返回 null 。
注意:
document.getElementById(" ") 得到的是一个对象,用 alert 显示得到的是“ object ”,而不是具体的值,它有 value 和 length 等属性,加上 .value 得到的才是具体的值!
细节:
1、 document.getElementById 有时会抓 name 放过了 id ,据说是 IE 的一个 BUG ;页面中有
<input type="hidden" id="hello8" name="category_id" value="2" />
<select id="category_id" onchange="al()">
一个是name="category_id" 一个是id="category_id",用document.getElementById取第二个,可是,取到的却是第一个name=category_id,在IE中getElementById竟然不是先抓id而是先找name相同的物件。
2、javascript中的getElementbyId使用
网页中的元素必须有id属性,才能通过这个方法得到,比如<input type=text name="content" id="content">
3、获取html标记主要有两种方法,一种是通过ID值,一种是通过name属性(name属性主要用于form表单内的input标记。)
document.getElementById(" ") 得到的是一个对象,用 alert 显示得到的是
“ object ”,而不是具体的值,它有 value 和 length 等属性,加上 .value 得到的才
是具体的值