Jquery Css Selector Add Value
How can i reset a display:none and add some value here is the code
onclic开发者_C百科k="$('reason{$test->id}').css('display:block');
$('#reasonid{$test->id}').val(this.value);"
$("#reason{$test->id}")
.css('display','block')
.val(this.value);
Try that.
精彩评论