js复制对象

<script type="text/javascript">

function getType(o)
{
var _t;
return ((_t = typeof(o)) == "object" ? o==null && "null" || Object.prototype.toString.call(o).slice(8,-1):_t).toLowerCase();
}
function extend(destination,source)
{
for(var p in source)
{
if(getType(source[p])=="array"||getType(source[p])=="object")
{
destination[p]=getType(source[p])=="array"?[]:{};
arguments.callee(destination[p],source[p]);
}
else
{
destination[p]=source[p];
}
}
}

/* *******************************************************************************************************/
var dataIndustry ={
getInsustryId: function(){ return $("#insustryId").val()},
getName:function(){return $(‘#name‘).val();},
getCode:function(){return $(‘#code‘).val();},
getRank:function(){return $(‘#rank‘).val();},
getIsLeaf:function(){return $(‘#isLeaf‘).val();},
getDescription:function(){return $(‘#description‘).val();},
getStatus:function(){return $(‘#status‘).val();}
}


/* *******************************************************************************************************/
debugger ;
alert("<font color=‘red‘>1dataIndustry&emsp;</font>\n"+dataIndustry);
var test={};
extend(test,dataIndustry);
test={}; //改变test属性
alert("<font color=‘red‘>1dataIndustry&emsp;</font>\n"+dataIndustry);


alert(test);

</script>

js复制对象,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。