abstract:整理jQuery的基礎語法:<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery</title> &
整理jQuery的基礎語法:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jQuery</title> <script src="static/js/jquery-3.4.1.js"></script> </head> <body> <div style="width: 100px;height: 100px;background-color: #ff5500"></div> <input type="button" value="顯示"> <script> //文檔就緒函數(shù),基本格式: $(document).ready(function () { //jQuery代碼,此函數(shù)防止文檔完全加載之前,運行js代碼 $('div').hide(); $('input').click(function () { $('div').show(); }) }) </script> </body> </html>
總結(jié):
1、jQuery基本語法:$(selector).action()
2、文檔就緒函數(shù),基本格式:
$(document).ready(function () {
//這里放jQuery代碼,此函數(shù)防止文檔完全加載之前,運行js代碼
})
Correcting teacher:天蓬老師Correction time:2019-07-01 17:45:14
Teacher's summary:jQuery, 做為一個古老的前端框架, 一直以來是前端程序員的最愛, 掌握它還是很有必要的.....