﻿// JScript File
(function(){
	
    //check the Home is available
    if (!window.Home) {
        window['Home'] = {};
    }
    
	//set the value by the id
    function setValueById(_id, _value){
        if (!document.getElementById(_id)) {            //alert("元素缺失");
        return; }
        var element = document.getElementById(_id);
        element.value = _value;
        //alert(element.value);
    }
    window['Home']['setValueById'] = setValueById;
    
    
})();
