• ext中autoLoad页面中js的问题记录


    1.增加script属性,如:
    • var n = this.add( {   
    •     id : node.id,   
    •     closable : true,   
    •     //通过autoLoad属性载入目标页,如果要用到脚本,必须加上scripts属性   
    •          autoLoad : {   
    •             url : "info.aspx",   
    •             scripts : true  
    •         }    
    •     });   
    • this.setActiveTab(n);
    2.不能在被加载的页面上加<!-- //-->符号,否则不能正确截析javascript代码。
    3.若被加载页面含有ext代码时注意不能和加载的页面引入相同的包。如页面index.jsp加载页面portal.jap,index.jsp中引入了<script type="text/javascript" src="<%=basePath%>ext-2.1/ext-all.js"></script>,那么portal.jsp中则不能再有<script type="text/javascript" src="<%=basePath%>ext-2.1/ext-all.js"></script>
    4.官方文档上说的是只加载<body></body>中的,你要把你的<script type="text/javascript" src=""></script>加在<body>中,建议只用<div>,用了<html>在IE在报错,在firefox下没问题
  • 相关阅读:
    http
    jquery
    wsgi
    urls控制器
    模板template
    ORM
    C++中获取汉字拼音首字缩写/全拼及生僻字的处理
    C语言函数strstr
    CString 成员函数用法
    判断字符串中是否存在中文
  • 原文地址:https://www.cnblogs.com/hannover/p/1940806.html
Copyright © 2020-2023  润新知