如何将 jQuery 代码放到外部 .js 文件中?
创建外部 JavaScript 文件,并在其中添加 jQuery 代码。
示例
假设外部文件名称为 demo.js。要将其添加到 HTML 页面,请按照以下方式包含它 −
<html> <head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="demo.js"></script> </head> <body> <h1>Hello</h1> </body> </html>
上面我们使用 Google CDN 添加了 jQuery,然后包含了外部文件。
在 demo.js 中添加 jQuery 代码,因为你想要放置 jQuery 代码 −
$(document).ready(function(){ alert(“amit”) });
广告