提问者:小点点

如何将JavaScript文件链接到HTML文件?


如何正确地将JavaScript文件链接到HTML文档?

其次,如何在JavaScript文件中使用jQuery?


共1个答案

匿名用户

首先,您需要从http://JQuery.com/下载JQuery库,然后按照以下方式在html头标记中加载JQuery库

然后,您可以通过在jquery加载脚本之后编写jquery代码来测试jquery是否工作

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<!--LINK JQUERY-->
<script type="text/javascript" src="jquery-3.3.1.js"></script>
<!--PERSONAL SCRIPT JavaScript-->
<script type="text/javascript">
   $(function(){
      alert("My First Jquery Test");
   });
</script>

</head>
<body><!-- Your web--></body>
</html>

如果希望单独使用jquery脚本文件,则必须在加载jquery库之后以这种方式定义外部.js文件。

<script type="text/javascript" src="jquery-3.3.1.js"></script>
<script src="js/YourExternalJQueryScripts.js"></script>

null

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<!--LINK JQUERY-->
<script type="text/javascript" src="jquery-3.3.1.js"></script>
<!--PERSONAL SCRIPT JavaScript-->
<script type="text/javascript">
   $(function(){
      alert("My First Jquery Test");
   });
</script>

</head>
<body><!-- Your web--></body>
</html>

相关问题