摘要: 如何避免js冲突 1.用匿名函数将脚本包起来,可以有效控制全局变量,避免冲突隐患。 用hash对象作为全局变量 var BLOBAL={ }; (function (){ var a=123, b="hellow world"; BLOBAL.str2=a; BLOBAL.str=b; }) (); 阅读全文
posted @ 2019-07-01 09:45 小白咚 阅读(165) 评论(0) 推荐(0) 编辑