标签:des style blog java ext color
今天倒持了 几个小时!
愣是 没有明白 ,为什么我的JSP的第一行没有代码? 还是报错!
错误是:
Description
Resource Path
Location Type
Syntax error, insert ")" to complete Expression
left.jsp /qyrs/WebRoot/admin/iframe
line 1 Client-side JavaScript Problem
翻译:
描述资源路径位置类型语法错误,插入“)”来完成表达left.jsp/ qyrs/的WebRoot/管理/ iframe中第1行客户端JavaScript的问题
截图:
Enlicpse 编辑器中:
解决方案:
1 原因:
正如翻译所说的: 是 Javascript 代码错误导致的,
关键在于:
<TABLE width="100%" border="0" align="center"
style="cursor:h
and" onclick=javascript:expand(2)>
因为: onclick 后面的 缺少 引号!
加上 双引号 即可!
<TABLE width="100%" border="0" align="center"
style="cursor:h
and" onclick="javascript:expand(2)">
修改之截图:
思考: 以后遇到 bug 需要冷静,关键在于找到 bug 的原因所在!
Javascript 语言,的确 出错的额话 的确 很难弄! 因为 本身并不是 强类型 语言!
Type Syntax error, insert ")" to complete Expression,布布扣,bubuko.com
Type Syntax error, insert ")" to complete Expression
标签:des style blog java ext color
原文地址:http://blog.csdn.net/love_javc_you/article/details/24919075