admin管理员组文章数量:1345076
When I copy and paste my code into this question, the ready
does not have strike-through, but in my IDE (VS), you'll see that it looks like .ready
Does this mean anything? The code still seems to work, but if it's an issue, I'd like to figure it out now; as I want to use jQuery in the right way.
My code:
$(document).ready(
function () {
$('.pets').hide();
}
)
What I see in my VS:
When I copy and paste my code into this question, the ready
does not have strike-through, but in my IDE (VS), you'll see that it looks like .ready
Does this mean anything? The code still seems to work, but if it's an issue, I'd like to figure it out now; as I want to use jQuery in the right way.
My code:
$(document).ready(
function () {
$('.pets').hide();
}
)
What I see in my VS:
Share Improve this question edited Jan 28, 2021 at 16:46 j08691 208k32 gold badges269 silver badges280 bronze badges asked Jan 28, 2021 at 16:28 J DJ D 671 silver badge6 bronze badges 3- 1 if you hover over it, does it show the reason? – apple apple Commented Jan 28, 2021 at 16:30
- See this -api.jquery./ready ,its been deprecated – Shubham Dixit Commented Jan 28, 2021 at 16:32
- Visual studio is adding "intelli"sense to your code - hence the different colours and warnings. Pasting into an SO snippet uses different rules to colour your code, and doesn't have deprecation checks. – fdomn-m Commented Jan 28, 2021 at 17:42
1 Answer
Reset to default 11The jQuery documentation says:
jQuery offers several ways to attach a function that will run when the DOM is ready. All of the following syntaxes are equivalent:
$( handler ) $( document ).ready( handler ) $( "document" ).ready( handler ) $( "img" ).ready( handler ) $().ready( handler )
As of jQuery 3.0, only the first syntax is remended; the other syntaxes still work but are deprecated.
So change your code to:
$(function () {
$('.pets').hide();
});
本文标签: javascriptWhy jQueryready has strikethroughStack Overflow
版权声明:本文标题:javascript - Why jQuery.ready has strikethrough? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753033a2533001.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论