上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 45 下一页
摘要: 我们可以使用html2jade将html编译成jade 首先安装html2jade npm install html2jade -g 用法一:使用html2jade将html转为jade html2jade http://www.imooc.com > mock.jade 上面表示将慕课网的首页转化 阅读全文
posted @ 2019-07-27 18:03 坤嬷嬷 阅读(507) 评论(0) 推荐(0)
摘要: 首先全局安装jade,我们就可以使用jade 命令了! jade index.jade // 解析后会在文件夹中新生成一个压缩代码后的index.html 如果我们不想生成的index.html文件进行压缩,那么我们可以执行 jade -P index.jade 如果我们想实时看到我们的编译效果(不 阅读全文
posted @ 2019-07-27 14:12 坤嬷嬷 阅读(493) 评论(0) 推荐(0)
摘要: 1、首先安装node 2、新建一个文件夹并进入该文件夹 3、安装jade 4、在新建的文件夹下新建js文件,写nodejs代码 5、在vscode中利用插件code runner直接执行js文件,输出相应结果 阅读全文
posted @ 2019-07-27 13:59 坤嬷嬷 阅读(308) 评论(0) 推荐(0)
摘要: jade可以自动识别单双标签 // 1.jade内容: input(type="button", value="点击") div // 此时输出❌error:input is self closing and should not have content,input为单标签不能有内容 Jade中所 阅读全文
posted @ 2019-07-26 19:09 坤嬷嬷 阅读(795) 评论(0) 推荐(0)
摘要: 语法 ⚠️实例均结合node jade缩进代表层级 html <html></html> html <html> head <head> style <style></style> </head> body <body> div <div></div> div <div></div> </body> 阅读全文
posted @ 2019-07-26 18:55 坤嬷嬷 阅读(710) 评论(0) 推荐(0)
摘要: 前言 流行的模板 PHP:Smarty SimpleTemplate Xtemplate Savant Java:Velocity FreeMarker Jbyte C#:Dotiquid SharpDom Razor Javascript:Mustache Handlebars Juicer Xt 阅读全文
posted @ 2019-07-26 18:10 坤嬷嬷 阅读(367) 评论(0) 推荐(0)
摘要: 定义和用法 $.fn.extend() 函数为jQuery扩展一个或多个实例属性和方法(主要用于扩展方法)。 提示:jQuery.fn是jQuery的原型对象,其extend()方法用于为jQuery的原型添加新的属性和方法。这些方法可以在jQuery实例对象上调用。 语法 $.fn.extend( 阅读全文
posted @ 2019-07-24 18:35 坤嬷嬷 阅读(183) 评论(0) 推荐(0)
摘要: 如何在页面上同时使用 jQuery 和其他框架? jQuery 和其他 JavaScript 框架 正如您已经了解到的,jQuery 使用 $ 符号作为 jQuery 的简写。 如果其他 JavaScript 框架也使用 $ 符号作为简写怎么办? 其他一些 JavaScript 框架包括:MooTo 阅读全文
posted @ 2019-07-23 15:02 坤嬷嬷 阅读(169) 评论(0) 推荐(0)
摘要: jQuery 遍历 - 祖先 parent() parents() parentsUntil() jQuery parent() 方法 parent() 方法返回被选元素的直接父元素。 该方法只会向上一级对 DOM 树进行遍历。 jQuery parents() 方法 parents() 方法返回被 阅读全文
posted @ 2019-07-23 14:48 坤嬷嬷 阅读(212) 评论(0) 推荐(0)
摘要: jQuery 尺寸 方法 jQuery 提供多个处理尺寸的重要方法: width() height() innerWidth() innerHeight() outerWidth() outerHeight() jQuery 尺寸 jQuery width() 和 height() 方法 width 阅读全文
posted @ 2019-07-23 14:05 坤嬷嬷 阅读(235) 评论(0) 推荐(0)
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 45 下一页