if ($("#comments").val().length != 0){
但是,这仅在用户离开输入空白时才有效,如果留下空格或返回则它将通过.我怎么能改善这个呢?
if ($("#comments").val().replace(/^\s+|\s+$/g,"").length != 0){