Blogger Information
Blog 46
fans 3
comment 2
visits 39253
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
jQuery引入方式及其ready()方法介绍 2018年4月2日
墨雨的博客
Original
538 people have browsed it
  • jQuery是一个javaScript函数库,它封装了js常用的功能代码,可极大简化js的代码编写。

  • jQuery在HTML中的引用方式:

    1.本地引用:需要到官网下载jq插件库,导入到本地项目,然后直接相对地址引用。

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

    2.在线CDN引用:引用CDN在线版本,国内建议使用百度静态资源库。

    <script type="text/script src="http://apps/bdimg.com/jquery/2.1.4/jquery.min.js"></script>

  • jQueryde ready()方法:

    当DOM文档加载完成时ready()事件被触发,执行functions函数定义的操作。

    语法:$(document).ready(function) 亦可简写为 $().ready(function) 或 $(function)

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post