我正在使用php循环生成多个按钮元素。如何使用jquery确定单击了哪个按钮?
<script type="text/javascript">
$(function(){
if(button.click){
alert(button.id);
}
});
</script>
<?php for($x=0; $x<4; $x++){ ?>
<ul id="x">
<li><input type="button" id="<?php echo $x; ?>" value="<?php echo $x; ?>"/></li>
</ul>
<?php } ?>
答案 0 :(得分:3)
标识元素的最常用方法是id。 (Literally, id does mean "identification")
你想要它的方式应该是这样的。
$("input").click(function() { //This will attach the function to all the input elements
alert($(this).attr('id')); //This will grab the id of the element and alert. Although $(this).id also work, I like this way.
});
但是,将绑定概括为所有输入元素可能是一个坏主意。因此,尝试为特定元素提供一个公共类,并使用$(".yourclass")
代替。
答案 1 :(得分:3)
好吧,如果您的代码如下所示
$('input:button').click(function(){
$(this); //this will always refer to the clicked button.
//You can use traversal to find stuff relative to this button
var butId = $(this).attr('id'); //this will give you the ID of the clicked button
});
答案 2 :(得分:2)
<?php for($x=0; $x<4; $x++){ ?>
<ul id="x">
<li><input type="button" id="<?php echo $x; ?>" value="<?php echo $x; ?>"/></li>
</ul>
<?php } ?>
<script type="text/javascript">
$("input").click(function() {
clickButton(this) // this is the button element, same as alert(this.id)
});
function clickButton(button) {
alert(button.id)
}
</script>
编辑:首选每个JS绑定
答案 3 :(得分:1)
$(function() {
$("input[type='button']").click(function(event) {
//event.target is the html causing the event
});
});