javascript - The update method of extjs5 panel is incompatible with ie
大家讲道理
大家讲道理 2017-06-05 11:13:15
0
1
603
<c:if test="${requestScope.isntCustVip == true}">
    <script type="text/javascript">
        function browserPage(pageNum){
            var t2 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.staff_name});
            t2.update();
            var t1 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.cm_id});
            t1.close();
        }
    </script>
</c:if>
<c:if test="${requestScope.isntCustVip == false}">
    <script type="text/javascript">
        function browserPage(pageNum){
            var t2 = parent.Ext.getCmp("main").child("#M0503");
            t2.update();
            var t1 = parent.Ext.getCmp("main").child("#" +'StarCustomerHold_'+${requestScope.cm_id});
            t1.close();
        }
    </script>
</c:if>

The t2.update(); method can be used in Firefox browser and 360 speed mode, but cannot be used in compatibility mode and IE browser. It must be compatible with IE. I would like to ask how to solve the compatibility problem to make the t2 panel Refresh the page

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
给我你的怀抱


Only supports the standard mode of ie8, does not support ie6 and 7

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!