我尝试加载我的javascripts:
<!-- Le javascript -->
<!-- ================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
{{ HTML::script('http://code.jquery.com/jquery-2.0.3.min.js') }}
{{ HTML::script('js/bootstrap-transition.js') }}
{{ HTML::script('js/bootstrap-alert.js') }}
{{ HTML::script('js/bootstrap-modal.js') }}
{{ HTML::script('js/bootstrap-dropdown.js') }}
{{ HTML::script('js/bootstrap-scrollspy.js') }}
{{ HTML::script('js/bootstrap-tab.js') }}
{{ HTML::script('js/bootstrap-tooltip.js') }}
{{ HTML::script('js/bootstrap-popover.js') }}
{{ HTML::script('js/bootstrap-button.js') }}
{{ HTML::script('js/bootstrap-collapse.js') }}
{{ HTML::script('js/bootstrap-carousel.js') }}
{{ HTML::script('js/bootstrap-typeahead.js') }}
但是,它仍然没有加载。我在Chrome开发者工具中检查了控制台,它返回了大部分错误:
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-transition.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-alert.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-modal.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-dropdown.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-scrollspy.js:4
Uncaught SyntaxError: Unexpected token < bootstrap-tab.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-tooltip.js:4
Uncaught SyntaxError: Unexpected token < bootstrap-popover.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-button.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-collapse.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-carousel.js:4
Uncaught SyntaxError: Unexpected token < :8000/js/bootstrap-typeahead.js:4
Resource interpreted as Script but transferred with MIME type text/plain: "chrome-extension://gppongmhjkpfnbhagpmjfkannfbllamg/js/inject.js".
答案 0 :(得分:2)
这就像你在JS中的第一个字符是&lt;。我看到它像HTML标签的第一个字符。 你确定你的JS路径吗?
答案 1 :(得分:2)
为什么不尝试使用像:
这样的CDN<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
即只需要用它来替换你拥有的所有东西:
{{ HTML::script('http://codeorigin.jquery.com/jquery-2.0.3.min.js') }}
{{ HTML::script('//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js') }}