最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Using jQuery statements in plain javascript functions - Stack Overflow

programmeradmin0浏览0评论

Is it a good or bad practice to use jQuery statements in plain javascript functions outside of ready? If not what is the correct way?

//** End ready **//

function doSomething() {
    selectedClickBoxIndex = parseInt( jQuery('.' + clickBoxOnClass ).attr('value') );

    // Javascript code  
}

Is it a good or bad practice to use jQuery statements in plain javascript functions outside of ready? If not what is the correct way?

//** End ready **//

function doSomething() {
    selectedClickBoxIndex = parseInt( jQuery('.' + clickBoxOnClass ).attr('value') );

    // Javascript code  
}
Share asked Apr 23, 2012 at 13:22 James P.James P. 19.6k28 gold badges100 silver badges158 bronze badges 5
  • Yes, of course it is. You can use jQuery functions wherever you want and need. – Adriano Repetti Commented Apr 23, 2012 at 13:24
  • 1 as far as i've learnt jQuery is an effective shorthand alternative to javascript to introduce unobtrusive scripting.. so using jQuery in conjuction with javascript is not something i'd remend as it'd feel like defeating the purpose of jQuery, also the modularity of code and uniformity gets affected when multiple people work mixing js and jQuery making it very hard to look at – optimusprime619 Commented Apr 23, 2012 at 13:27
  • 6 @optimusprime619 jQuery isn't an alternative to JavaScript - it is JavaScript. It is in fact inherently impossible to use jQuery without using JavaScript. – Pointy Commented Apr 23, 2012 at 13:33
  • @JamesPoulson note that to get the value of an element you should probably use .val() and not .attr("value") ... – Pointy Commented Apr 23, 2012 at 13:34
  • @Pointy i used the world alternative in the context of using "implementation" :) but yes, i understand that it is actually javascript.. – optimusprime619 Commented Apr 23, 2012 at 13:55
Add a ment  | 

7 Answers 7

Reset to default 5

nothing wrong. When you include the jquery file, you're expanding your functionality, free to use wherever you want

There is nothing wrong with that. jQuery is just a Javascript library, there is no strict separation between them.

You might want to use the function val, though:

function doSomething() {
  selectedClickBoxIndex = parseInt( jQuery('.' + clickBoxOnClass ).val() );

  // Javascript code  
}

That's pletely acceptable; just make sure you call those functions after the DOM has loaded, either from document ready or some equivalent.

There's nothing wrong with that at all.

What you want to make sure is that no references to DOM nodes are made before DOMReady. This is true regardless of whether you use $('.someClass') or document.getElementsByClassName.

Your function does make such a reference, but this is fine as long as the function itself is not called before DOMReady.

There is no reason not to use it outside of the document.ready. It makes it much easier to traverse and modify the dom.

The ability to grab elements on the page through the many useful jquery selectors is a good enough reason to use it elsewhere.

As long as function doSomething() is triggered after onLoad event it is totally OK to do it that way. $(document).ready is just a way for JS execution to be postponed until page is fully loaded.

Why not this will reduce the line of code and also jquery is patible with all the browsers

发布评论

评论列表(0)

  1. 暂无评论