本文介绍了通过onclick将Div id发送给javascript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个包含多个div的页面。所有的div都有一个唯一的ID。我想将该ID发送到JavaScript函数。我试图将它保存为一个值,并发送this.value,但这也不起作用。
I have a page with several div's. All of the divs have a unique id. I would like to send that id to a javascript function. I have tried to save it as a value as well, and send this.value, but that does not work either.
<div class='recordElem$val' id='$rname' value='$rname'
onclick='javascript:updateRecord(this.value);'>
$name</div>"
推荐答案
这里是一个jQuery答案
Here is a jQuery answer
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
function clicked(item) {
alert($(item).attr("id"));
}
</script>
<div onclick="clicked(this);" id="test">test</div>
这篇关于通过onclick将Div id发送给javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!