function $(id){return document.getElementById(id)}
这句话已经变形简写了,还是和其他JQ脚本冲突
只要重新命名
function $$(id){return document.getElementById(id)}
那么demo=$$(demo);demo1=$$(demo1);demo2=$$(demo2)
这样定义其他就可以了!但尽量不使用$(id)这样的定义
function $(id){return document.getElementById(id)}
这句话已经变形简写了,还是和其他JQ脚本冲突
只要重新命名
function $$(id){return document.getElementById(id)}
那么demo=$$(demo);demo1=$$(demo1);demo2=$$(demo2)
这样定义其他就可以了!但尽量不使用$(id)这样的定义