简体   繁体   中英

Unexpected token < exception when I set charset=“utf-8” in js file

I have book.jsp and book.js file. I was trying to set charset in js file like below.

<script src="/js/view/page1/main/book/book.js" type="text/javascript" charset="utf-8"/>

Jsp content loading without issue but getting below exception in the console while trying to load js file for that page.

Uncaught SyntaxError: Unexpected token <

您需要确保关闭标签。

<script src="/js/view/page1/main/book/book.js" type="text/javascript" charset="utf-8"></script>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM