1

私のコード

   $( ".attachPo" ).click(function() {
        alert($(this).attr('id'))   // prints 59
        var id = $(this).attr('id');
        $( '#attachPoForm_"+id+"').show();  // id name = attachPoForm_59
    });

しかし、これは私にとってはうまくいきません.jQuesy変数をクラスまたはID名に追加する正しい方法は何ですか

4

6 に答える 6

0

this.idのように使用してみてください。

$( ".attachPo" ).click(function() {
    var id=this.id;
    alert(id);
    $("#attachPoForm_"+id).show();  // id name = attachPoForm_59
});
于 2013-10-15T12:15:40.933 に答える