TOC](Uncaught TypeError: Cannot read property 'nodeName' of undefined错误

Uncaught TypeError: Cannot read property 'nodeName' of undefined错误

  • 自己写着玩的小项目
    • 先解释下错误

自己写着玩的小项目

先解释下错误

今天上午想修改下后台页面,中午改出毛病了…左侧导航栏只要一点就报错…
就是它: Uncaught TypeError: Cannot read property ‘nodeName’ of undefined
改了一下午,没办法,把之前添加的前台页面也都删了,删了发现还是不行,整个人都不好了,
晚上吃饭时把整个项目都删了重新写,写完终于好了,也发现了到底是错在哪了…
ps:自己做着玩的小项目

<body id="layout" class="easyui-layout">
    <div data-options="region:'north',height:100"></div>
    <div data-options="href:'${pageContext.request.contextPath}/left.jsp',region:'west',width:260,title:'导航栏',iconCls:'icon-more',collapsedSize:22"></div>
    <div data-options="href:'${pageContext.request.contextPath}/welcome.jsp',region:'center',height:100"></div>
</body>

重新做完项目之后发现…我把中间页面的路径写错了…
应该是这个样子的…tabs.jsp写成了welcome.jsp

<body id="layout" class="easyui-layout">
    <div data-options="region:'north',height:100"></div>
    <div data-options="href:'${pageContext.request.contextPath}/left.jsp',region:'west',width:260,title:'导航栏',iconCls:'icon-more',collapsedSize:22"></div>
    <div data-options="href:'${pageContext.request.contextPath}/tabs.jsp',region:'center',height:100"></div>
</body>

这是错误详情(认真的都注释了)

//jquery.min.js:2 Uncaught TypeError: Cannot read property 'nodeName' of undefined
//    at Function.m.acceptData (jquery.min.js:2)
//    at Q (jquery.min.js:4)
//    at Function.data (jquery.min.js:4)
//    at _362 (jquery.easyui.min.js:4825)
//    at _361 (jquery.easyui.min.js:4901)
//    at Object.exists (jquery.easyui.min.js:4973)
//    at m.fn.init.$.fn.tabs (jquery.easyui.min.js:4919)
//    at addtabls (eval at  (jquery.min.js:2), :29:24)
//    at HTMLDivElement.onclick (layout.jsp:1)

你可能感兴趣的:(easyui)