javascript基础知识大集锦(一) 推荐收藏(3)


MyTool = new function(){
/**
* 返回非空字符串,如果有默认值就返回默认字符串.
*/
this.notNull = function(str,defaultStr){
if(typeof(str)=="undefined"||str==null||str==''){
if(defaultStr)
return defaultStr;
else
return '';
}
else{
return str;
}
}
}
rootId = MyTool.notNull(rootId,'001000');


12.常用的js方法,包括表单校验的一些方法,下拉菜单常用的方法等等:

复制代码 代码如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdffsg.html