jQuery是一個廣泛使用的JavaScript庫,它簡化了JavaScript代碼在網頁中添加、刪除、修改元素的過程。而其中的一個核心文件就是jquery.min.js。
<!DOCTYPE html> <html> <head> <script src="jquery-2.1.1.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").hide(); }); }); </script> </head> <body> <h2>jQuery is Fun!!!</h2> <p>jQuery is a fast and concise JavaScript library created by John Resig in 2006. jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.</p> <p>jQuery is a free, open-source software licensed under the MIT License.</p> <button>Hide</button> </body> </html>
上面的代碼展示了一個簡單的jQuery應用。它首先引用了jquery-2.1.1.min.js文件,然后在頁面加載完成后隱藏了所有p標簽中的內容。這個過程非常簡單明了,通過使用jQuery庫中封裝好的函數,我們可以輕松地實現這種交互效果。
正是因為這種便捷性,使得大量的前端開發者選擇使用jQuery進行開發。而jquery.min.js則是整個庫中最核心的文件,是使用jQuery必不可少的一個文件。