JavaScript代码(二)

//  get the Browser type
function  getBrowserType()  {
    
var OsObject = "";
    
if (navigator.userAgent.indexOf("MSIE"> 0{
        
return "IE";
    }

    
if (isFirefox = navigator.userAgent.indexOf("Firefox"> 0{
        
return "Firefox";
    }

    
if (isSafari = navigator.userAgent.indexOf("Safari"> 0{
        
return "Safari";
    }

    
if (isCamino = navigator.userAgent.indexOf("Camino"> 0{
        
return "Camino";
    }

    
if (isMozilla = navigator.userAgent.indexOf("Gecko/"> 0{
        
return "Gecko";
    }

}


//  Get the value of element
function  valueOf(element)  {
    
if (typeof element == "string"{
        element 
= get(element);
    }

    
if (element) {
        
return element.value;
    }

    
return null;
}


//  the value of the element is Email format or not
function  isEmail(element, alertMsg)  {
    strEmail 
= element.value;
    
if (0 == strEmail.length) {
        
return true;
    }

    
if (strEmail.search(/^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$/!= -1{
        
return true;
    }

    
if (alertMsg != null{
        error(element, alertMsg);
    }

    
return false;
}

//  initialize the select, set the option, which value equals argument ,is selected
function  initSelect(selectId, optionValue)  {
    
var aSelect = get(selectId);
    
if (aSelect == null{
        
return;
    }

    
var options = aSelect.options;
    
for (var i = 0; i < options.length; i++{
        
if (options[i].value == optionValue) {
            options[i].selected 
= true;
            
break;
        }

    }

    
if (aSelect.onchange) {
        aSelect.onchange();
    }

}

//  initialize the checkbox, set the checkbox is checked or not, 
//
 value : true or false
function  initCheckbox(checkbox, value)  {
    
var element = get(checkbox);
    
if (!element) {
        
return;
    }

    
if (value) {
        element.checked 
= true;
    }
 else {
        element.checked 
= false;
    }

    
if (element.onclick) {
        element.onclick();
    }

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值