禁用textarea调整大小处理程序jQuery css

时间:2014-08-03 14:02:00

标签: jquery html css

如何在jQuery中禁用textarea大小调整处理程序?

function textArea(){
    $("#textarea").css("resize",none); // not working
}

1 个答案:

答案 0 :(得分:2)

试试这个:

$('textarea').click(function () {
    $(this).css('resize', 'none');
});

<强> JSFiddle Demo

"

之后您遗失了$("#textarea

您需要在none"

周围包裹'