Chrome Inspector:未捕获的SyntaxError:意外的令牌非法
一个php脚本正在构建以下内容(非常复杂的脚本太长而无法在这里发布),但是chrome检查器正在回馈“未捕获的SyntaxError:意外的令牌非法”。 我无法找到下面的HTML问题,有什么想法?
<div id='580762bd48bb28c4ce3e1fafe5435969'>
<div>There is 1 new comment on your <a href="/gci/user/aid1795">activity</a>.</div>
<img src='/img/close.png' onclick='notificationViewed(3428, 2, 1795, 580762bd48bb28c4ce3e1fafe5435969)'></img>
</div>
</br></br>
<div id='afc89b3105b7a29d764dcebe75d2f5ef'>
<div>There is 1 new comment on your <a href="/gci/user/aid3">activity</a>.</div>
<img src='/img/close.png' onclick='notificationViewed(3428, 2, 3, afc89b3105b7a29d764dcebe75d2f5ef)'></img>
</div>
</br></br>
<div id='29f4b2518ab7498273466d4c584c6c2c'>
<div>There are 2 new comments on your <a href="/gci/forecast/ifp.php?iid=269">comment</a>.</div>
<img src='/img/close.png' onclick='notificationViewed(3428, 3, ifpgci269, 29f4b2518ab7498273466d4c584c6c2c)'></img>
</div>
</br></br>
<div id='5cbe38a820ff37f4522fc314e14b1fd6'>
<div>There are 2 new comments on "<a href="/gci/forecast/ifp.php?iid=269">Test1</a>".</div>
<img src='/img/close.png' onclick='notificationViewed(3428, 1, ifpgci269, 5cbe38a820ff37f4522fc314e14b1fd6)'></img>
</div>
</br></br>
</div>
你需要引用你的事件函数调用中的字符串:
onclick='notificationViewed(3428, 1, "ifpgci269", "5cbe38a820ff37f4522fc314e14b1fd6")'
问题在这里:
onclick='notificationViewed(3428, 2, 1795, **580762bd48bb28c4ce3e1fafe5435969**)'
你不希望在十六进制中引用十六进制的引号,使它成为一个字符串,或者在它之前用0x
来表示它是十六进制。
任何人在这个问题上磕磕绊绊迟到的答案
Chrome并未指定此特定错误,但在Firefox中调试(使用Firebug)会为您提供更多信息。
链接地址: http://www.djcxy.com/p/45977.html上一篇: Chrome Inspector: Uncaught SyntaxError: Unexpected token ILLEGAL