如何在jQuery中禁用textarea大小调整处理程序?
function textArea(){
$("#textarea").css("resize",none); // not working
}
答案 0 :(得分:2)
试试这个:
$('textarea').click(function () {
$(this).css('resize', 'none');
});
<强> JSFiddle Demo 强>
"
$("#textarea
您需要在none
或"
'