代码搜索:Check
找到约 10,000 项符合「Check」的源代码
代码结果 10,000
www.eeworm.com/read/328220/3445961
js check.js
function checkuserinfo()
{
if(checkspace(document.userinfo.username.value)) {
document.userinfo.username.focus();
alert("对不起,请填写用户名!");
return false;
}
if(checkspace(document.use
www.eeworm.com/read/327838/3452828
js check.js
function isInteger(str){
return str.search("^[1-9]+(\\d*)$")==0;
}
/**
* Positive Integer Check
*/
function isPositiveInteger(str){
var regex=new RegExp("^[1-9]+\\d*$");
return rege