在textarea JQM中,如何禁用“enter”或不允许使用enter?有可能吗?
<textarea maxlength='200' name="comment" id="comment" data-mini="true" data-theme="a" cols="40" rows="3" ></textarea
&GT;
提前致谢
答案 0 :(得分:0)
$("#comment").on("keypress", function (e) {
if (e.which === 13) {
e.preventDefault();
//alert("Keypress averted");
}
});