js 覆盖

来源:互联网 发布:西贝柳斯打谱软件图片 编辑:程序博客网 时间:2024/04/28 11:40

function a(id){

alert(id);

a = function(id){

alert('延期加载');

};

a(id);

}


a('000');     // 000 延期加载

a('111');     // 延期加载