jquery-1.8.3.min.js到jquery-1.9.1.min.js变化
发布时间:2017/6/11 17:21:08 作者:Admin 阅读:311
广告:
if ($("#<%=isrefer_txt.ClientID%>").attr("checked") != "checked")
改为
if ($("#<%=isrefer_txt.ClientID%>").prop("checked") != true)
$.browser.mozilla == true
改为
/firefox/.test(navigator.userAgent.toLowerCase()) == true
if ($.browser.msie)
改为
var isie = (navigator.appName == "Microsoft Internet Explorer");
if (isie)
$('.oneCloseBtn').live("click", function () {
改为
$('#zoomtu').on("click",".oneCloseBtn",function () {
广告:
相关文章