jQuery Mobile 会自动为 HTML 表单自动添加样式,让它们看起来更具吸引力,触摸起来更具友好性。 jQuery Mobile 表单结构 jQuery Mobile 使用 CSS 为 HTML 表单元素添加样式,让它们更具吸引力,更易于使用。 在 jQuery Mobile 中,您可以使 ...
分类:
Web程序 时间:
2020-06-07 10:38:20
阅读次数:
84
bootstrap的js代码是依赖于jQuery的,也就意味着你在开发项目时,使用Bootstrap动态效果的时候,一定要导入jQuery jQuery绑定事件 以及 事件应用举例 绑定事件的两种方法 // 第一种 $('#d1').click(function () { alert('你好呀') ...
分类:
Web程序 时间:
2020-06-07 00:53:15
阅读次数:
147
当 js 文件 是通过 cdn 加载到页面上的,webpack 打包时,需要忽略这一类库的打包,就需要在 webpack 配置中添加 externals 配置,如当页面上 jQuery 库通过 cdn 方式加载,externals 需要过滤掉 jQuery库的打包, <!DOCTYPE html> ...
分类:
其他好文 时间:
2020-06-06 21:38:00
阅读次数:
57
一、jquery js 和 jquery主要的区别 在 dom 想用jquery 必须先引入(顺序问题) 先css 在js: 先框架css再自己css 先jquery 再框架 再自己 找元素: js: document.getElement[s]By... id tagname name class ...
分类:
Web程序 时间:
2020-06-06 18:50:13
阅读次数:
105
<!-- edit by yunecommerce.com add the countdown timer --> <style>#progress_bar{margin-top:15px}.progressbar.progressbar{background:#ffe8e8;border:0px ...
分类:
移动开发 时间:
2020-06-06 18:48:48
阅读次数:
148
<!-- 新 Bootstrap4 核心 CSS 文件 --> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.1.0/css/bootstrap.min.css"> <!-- jQuery文件。务必在bootstra ...
分类:
Web程序 时间:
2020-06-06 18:40:51
阅读次数:
80
1.学习了jquery的基本操作和插件的运用 js 和 jquery主要的区别 在 dom 想用jquery 必须先引入(顺序问题) 先css 在js: 先框架css再自己css 先jquery 再框架 再自己 找元素: js: document.getElement[s]By... id tagn ...
分类:
其他好文 时间:
2020-06-06 18:20:10
阅读次数:
246
操作属性 jsDom.getAttribute('class'); jsDom.setAttribute('class','add'); jsDom.removeAttribute('class'); jqDom.attr('class'); jqDom.attr('class','add'); j ...
分类:
Web程序 时间:
2020-06-06 18:18:04
阅读次数:
86
JQuery 参考视频:https://www.bilibili.com/video/BV1JJ41177di?p=26 一、JQuery是什么 JQuery库,里面存在大量的Javascript函数 JQuery文档:https://jquery.cuishifeng.cn/source.html ...
分类:
Web程序 时间:
2020-06-06 14:25:57
阅读次数:
82
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Ajax</title> <script src="js/jquery-2.1.1.min.js"></script> <style> body{ padding: 50px; fo ...
分类:
Web程序 时间:
2020-06-06 13:08:13
阅读次数:
79