document.onkeydown=function(e){
    if ($('.text-area').is(":focus")) {
        if(e.keyCode == 13 && e.ctrlKey){
            var changeText = $('text-area').val() + "\n";
            $('text-area').val(changeText);
        }else if(e.keyCode == 13){
            // 避免回车键换行
            e.preventDefault();
            $('.dsChat_send').click();
        }
    }
}

replace(正则不要用引号,'需要替换内容')

标签: jq, 回车, 发送

添加新评论

阅读量:140