在Web開發中,Flask作為一個微型Web框架,可以實現快速搭建一個簡單的應用程序。而jQuery是一款非常流行的JavaScript庫,用于簡化HTML文檔操作、事件處理、動畫設計等操作。在Flask中獲取jQuery并使用它可以使我們更方便地進行Web頁面的開發與交互操作。
1. 在static目錄中新建一個js子目錄,將jquery.min.js文件放在其中。 2. 編寫Flask應用程序,在HTML頁面中引入jQuery: <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> 3. 在命令行中輸入命令安裝jQuery: npm install jquery 4. 在Flask應用程序中使用jQuery: @app.route('/') def index(): return render_template('index.html') @app.route('/hello') def hello(): return 'Hello, World!' @app.route('/jquery') def jquery(): return render_template('jquery.html') 在jquery.html頁面中可以添加jQuery的JavaScript代碼,用于對HTML頁面進行操作。