程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ie7-JS調用為何在IE7下無效呢 IE6和8都正常

ie7-JS調用為何在IE7下無效呢 IE6和8都正常

編輯:編程綜合問答
JS調用為何在IE7下無效呢 IE6和8都正常
    this.r.document.writeln("<script type=\"text/javascript\">");
    this.r.document.writeln("    setTimeout('parent.BindListMenu();',5000);");
    this.r.document.writeln("</script>"); 
 function BindListMenu() {
    var UserListMenuDate = new Array();
    $("#r").contents().find(".list").delegate("tr", "mousemove", function () {
        $(this).smartMenu(UserListMenuDate, {
            name: "UserListMenu",
            offsetX: 232 + $(".IceChatBody").width() + 2,
            offsetY: 2,
            ContainerId: "r",
            beforeShow: function () {
                $.smartMenu.remove();
                parent.cs($(this).attr("id"));
                if (parent.InAdminMode == 1) {
                    UserListMenuDate[0] = [ul_glgn_u];
                    UserListMenuDate[1] = [voicemanage];
                    UserListMenuDate[2] = [videomanage];
                    UserListMenuDate[3] = [ul_zbgn_u];
                    UserListMenuDate[4] = [ul_cjgn_u];
                } 
            }
        });
    });
    $("#r").contents().on("contextmenu", function () { $.smartMenu.remove(); return false; });
    $("#u").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#u1").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#d").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#af").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#igame").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#igamemsg").contents().delegate("body", "click", function () { $.smartMenu.remove(); });
    $("#r").contents().click(function () { $.smartMenu.remove(); });
}

最佳回答:


看你的Javascript是否插入頁面,然後函數調用是否真確,console.log打印一下

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved