admin管理员组文章数量:1397074
I am new to coding. I am receiving this error: "Missing "Use strict" statement" in my Javascript code. Here is my code:
$(function(){
$('.nav-toggle').on('click',function(){
$('.main-nav').toggleClass('open');
});
});
I do not know where to put 'use-strict';
.
Where do I put the statement?
I am new to coding. I am receiving this error: "Missing "Use strict" statement" in my Javascript code. Here is my code:
$(function(){
$('.nav-toggle').on('click',function(){
$('.main-nav').toggleClass('open');
});
});
I do not know where to put 'use-strict';
.
Where do I put the statement?
- This is optional, it shouldn't cause an error. – Barmar Commented Jan 14, 2016 at 22:56
- 2 See stackoverflow./questions/1335851/… – Barmar Commented Jan 14, 2016 at 22:57
- You don't need the leading $. – Mathemats Commented Jan 14, 2016 at 22:57
- @Mathemats Yes he does, that's how you run the code in the jQuery document.ready handler. – Barmar Commented Jan 14, 2016 at 22:58
- That's not a JavaScript error, but linter error. – Michał Perłakowski Commented Jan 16, 2016 at 7:30
2 Answers
Reset to default 3As Barmar said, the use strict is optional, but if you had to place it somewhere the best place I would say you should put it is
$(function(){
"use strict";
$('.nav-toggle').on('click',function(){
$('.main-nav').toggleClass('open');
});
});
This is where you have to put it whether you use Jquery or Javascript
(function($){
"use strict";
$('.nav-toggle').on('click',function(){
$('.main-nav').toggleClass('open');
});
})(jQuery);
.open{
display: none;
}
<script src="https://ajax.googleapis./ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div>
<button class="nav-toggle">Open</button>
<div class="main-nav">
<ul>
<li>Home</li>
<li>Contact</li>
</ul>
</div>
</div>
Assuming you want to achieve a responsive navbar effect I have added the relevant code to make this easier.
In the jQuery part, I'm creating an anonymous function and passing it the $
sign so you can use it safely without polluting the global scope. "use strict"
use is not mandatory but if you want to use place it inside the anonymous function as I did.
本文标签: javascriptMissing quotUse strictquot statementStack Overflow
版权声明:本文标题:javascript - Missing "Use strict" statement - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744104516a2591003.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论