站点域名:jquery.com
站点标题:J**ascrīpt框架开发网
站点关键词:(9个字符) JqueryJ**ascrīpt框架开发网网站开发Jquery
站点描述:(70个字符) Jquery由美国人John Resig创建,它是轻量级的js库,兼容css3和各类浏览器,是网站开发人员必备的网站之一。$&Jquery由美国人John Resig创建,它是轻量级的js库,兼容css3和各类浏览器,是网站开发人员必备的网站之一。
站点所在地:北美洲
网站内容预览:
jQuery jQuery 4.0 is coming soon! Prepare by upgrading to the latest jQuery 3.x release. Learn more about our version support. jQuery jQuery UI jQuery Mobile Sizzle QUnit Plugins Contribute CLA Style Guides Bug Triage Code Documentation Web Sites Events Support Learning Center Chat Stack Overflow Report a bug OpenJS Foundation Join Members jQuery Team Governance Conduct Projects jQuery Navigation Download API Documentation Blog Plugins Browser Support Version Support Download jQuery v3.7.1 Only the latest version of jQuery is supported. Discover Support Options View Source on GitHub → How jQuery Works → Lightweight Footprint Only 30kB minified and gzipped. Can also be included as an AMD module CSS3 Compliant Supports CSS3 selectors to find elements as well as in style property manipulation Cross-Browser Chrome, Edge, Firefox, IE, Safari, Android, iOS, and more What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. Resources jQuery Core API Documentation jQuery Learning Center jQuery Blog Contribute to jQuery Browse or Submit jQuery Bugs A Brief Look DOM Traversal and Manipulation Get the <button> element with the class ’continue’ and change its HTML to ’Next Step...’ 1 $( "button.continue" ).html( "Next Step..." ) Event Handling Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked. 1 2 3 4 var hiddenBox = $( "#banner-message" );$( "#button-container button" ).on( "click", function( event ) { hiddenBox.show();}); Ajax Call a local script on the server /api/getWeather with the query parameter zipcode=97201 and replace the element #weather-temp’s html with the returned text. 1 2 3 4 5 6 7 8 9 $.ajax({ url: "/api/getWeather", data: { zipcode: 97201 }, success: function( result ) { $( "#weather-temp" ).html( "<strong>" + result + "</strong> degrees" ); }}); Related Projects jQuery UI This project is in maintenance-only mode. Learn more. jQuery Mobile This project is deprecated. Learn more. Books Learning jQuery Fourth Edition Karl Swedberg and Jonathan Chaffer jQuery in Action Bear Bibeault, Yehuda Katz, and Aurelio De Rosa jQuery Succinctly Cody Lindley Learning Center Chat Twitter GitHub Copyright 2025 OpenJS Foundation and jQuery contributors. All rights reserved. See jQuery License for more information. The OpenJS Foundation has registered trademarks and uses trademarks. For a list of trademarks of the OpenJS Foundation, please see our Trademark Policy and Trademark List. Trademarks and logos not indicated on the list of OpenJS Foundation trademarks are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them. OpenJS Foundation Terms of Use, Privacy, and Cookie Policies also apply. Web hosting by Digital Ocean | CDN by Fastly | Powered by WordPress