function checkKey(key) { if($.trim(key) == ''){ /** * 输入的字符串为空,空格 */ alert('请输入关键字'); return false; }else{ /** * 输入的字符串为 */ return true; }}