我的代码
$( ".attachPo" ).click(function() {
alert($(this).attr('id')) // prints 59
var id = $(this).attr('id');
$( '#attachPoForm_"+id+"').show(); // id name = attachPoForm_59
});
但这对我不起作用,将 jQuesy 变量附加到类或 id 名称的正确方法是什么