zl程序教程

您现在的位置是:首页 >  其它

当前栏目

jQuery1.3.2升级到jQuery1.4.4需要修改的地方

修改 升级 需要 地方 JQuery1.4
2023-06-13 09:14:26 时间
对不兼容处的修改:
1.jQuery("option[selected=true]",this)改为

jQuery("option:selected",this)

2.jQuery("option[text=text]",this)改为

jQuery("option:contains(text)",this)