jquery-1.8.3.min.js到jquery-1.9.1.min.js變化
發布時間:2017/6/11 17:21:08 作者:Admin 閱讀:307
廣告:
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 () {
廣告:
相關文章