问题描述
有一个页面index.aspx,用frameset分成上下两部分。<framesetframeborder="no"framespacing="0"rows="100,*"><frameframeborder="no"src="Top.aspx"id="top"name="top"noresize="noresize"scrolling="no"/><frameframeborder="no"src="Manager/TwoAdmin/Person/main.aspx"id="main"name="main"noresize="noresize"scrolling="no"/></frameset>main.aspx中用了easyui的tab,有两个tab,每个tab中都用iframe链接了一个页面a.aspx,b.aspx。b.aspx中引用了My97DatePicker.js,<head>中只有下面一个引用<scriptsrc="../../../../js/My97DatePicker/WdatePicker.js"type="text/javascript"></script>,单独调试b.aspx或main.aspx都很正常,但调试index.aspx时,页面就报未定义错误,点“否”后,My97DatePicker可以正常使用。请高手指教。不知道是不是路径问题
解决方案
本帖最后由 mailofzw 于 2016-02-19 09:46:40 编辑
解决方案二:
<scriptsrc="/js/My97DatePicker/WdatePicker.js"type="text/javascript"></script>
解决方案三:
删除这一行<scriptsrc="../../../../js/My97DatePicker/WdatePicker.js"type="text/javascript"></script>然后从项目的Js文件里找到WdatePicker.js,直接拖到上面这行的位置