Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
480 views
in Technique[技术] by (71.8m points)

javascript - Why jQuery.ready has strikethrough?

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:

What I see on my VS

question from:https://stackoverflow.com/questions/65941258/why-jquery-ready-has-strikethrough

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The 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 recommended; the other syntaxes still work but are deprecated.

So change your code to:

$(function () {
    $('.pets').hide();
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...