前端问题
1 iframe, chrome有问题,其它浏览器正常: Unsafe JavaScript attempt to access frame with URL file:///D:/mmt/workspace/thrillerzwtest/Web/html/iframeParent.html from frame with URL file:///D:/mmt/workspace/thrillerzwtest/Web/html/iframe.html. Domains, protocols and ports must match.
iframe.html:16
原因 :chrome访问window.frameElement为null,在tomcat下访问可以正常。Chrome不允许采用file:协议引用父窗口。
2jQuery(function () {
$('.cur-mode').bind('click', function (e) {
报错:Uncaught TypeError: Cannot call method 'bind' of null
原因:没有.cur-mode 元素
3后台被请求了2次
分析:通过打印referer发现来自同一个页面, System.out.println("referer=" + request.getHeader("REFERER"));
原因:页面有空的ajax请求,jQuery.ajax({});
4 var liNode='<li><a href="javascript:supcat(\'fromMoreSupcat\',\'hot\');" id="fromMoreSupcat">'+jQuery("#"+id).text()+'</a></li>';
chrome报错:Uncaught SyntaxError: Unexpected identifier
'fromMoreSupcat'改为\'fromMoreSupcat\' 转义下
5