通过将回车替换为空的方法,避免换行
$('.search-input').keydown(function(e){
this.value = this.value.replace(/\n/g, '');
}
在molliza firefox中有效,在chrome中无效。。
通过将回车替换为空的方法,避免换行
$('.search-input').keydown(function(e){
this.value = this.value.replace(/\n/g, '');
}
在molliza firefox中有效,在chrome中无效。。