3
可能な重複IDを取得します。私は、ボタンのクリック時に、DIVのIDを表示したいと思い
Get the id of a the item that is clickedクリックで
私はボタンが付いた複数のdivを持っていると隣ボタン(ボタンがクリックされたdiv内のみ)。それが繰り返し付加されませんので、今すぐ更新 http://jsfiddle.net/VXLXw/1/
可能な重複IDを取得します。私は、ボタンのクリック時に、DIVのIDを表示したいと思い
Get the id of a the item that is clickedクリックで
私はボタンが付いた複数のdivを持っていると隣ボタン(ボタンがクリックされたdiv内のみ)。それが繰り返し付加されませんので、今すぐ更新 http://jsfiddle.net/VXLXw/1/
$('button').click(function() {
var $p = $(this).parent(),
id = $p.attr('id');
if (!$p.find('.id').size()) {
$p.append('<span class="id">'+id+'</span>');
}
});
。
ボタンがクリックされた後に繰り返すのを止めるにはどうすればいいですか – foshoeiyyy
OKを更新します... –
@foshoeiyyy:http://stackoverflow.com/questions/2947218/in-jquery-is-there-どのような方法でも唯一のバインド - クリック1回 –