function checkKey(key) { if($.trim(key) == ''){ /** * 输入的字符串为空,空格 */ alert('请输入关键字'); return false; }else{ /** * 输入的字符串为 */ return true; } }
本文共 248 字,大约阅读时间需要 1 分钟。
function checkKey(key) { if($.trim(key) == ''){ /** * 输入的字符串为空,空格 */ alert('请输入关键字'); return false; }else{ /** * 输入的字符串为 */ return true; } }
转载于:https://www.cnblogs.com/handsomeBoys/p/6767459.html