JavaScript / jQuery CSS Style

jQuery laban sa JavaScript

jQuery ay nilikha ni John Resig noong 2006. Ito ay nililinang upang pagtanggapin ang hindi pagkakasundo ng browser at mapabuti ang mga paggamit sa HTML DOM, pangyayari, animasyon at Ajax.

For over a decade, jQuery has been the most popular JavaScript library in the world.

However, most jQuery utilities can be resolved through a few lines of standard JavaScript after JavaScript Version 5 (2009):

Hide HTML Element

Hide an HTML element:

jQuery

myElement.hide();

Try It Yourself

JavaScript

myElement.style.display = "none";

Try It Yourself

Display HTML Element

Display an HTML element:

jQuery

myElement.show();

Try It Yourself

JavaScript

myElement.style.display = "";

Try It Yourself

Style HTML Elements

Change the font size of an HTML element:

jQuery

myElement.css("font-size","35px");

Try It Yourself

JavaScript

myElement.style.fontSize = "35px";

Try It Yourself