js 2017 - 2】的更多相关文章

设置360为极速模式   <meta name='renderer' content='webkit'> css3超出隐藏 .ellipsis { // 超出一行 width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .ellipsis2 { // 超出两行 display: -webkit-box; overflow: hidden; text-overflow: ellipsis; -w…
JS面向对象 <script> function num(val) { return val * 8 } function Index(name, age) { this.name = name; this.age = age; } Index.prototype = { constructor: Index } Index.prototype.test = function () { console.log(num(this.age)); } Index.prototype.testB =…
String.IsNullOrEmpty = function (v) { return !(typeof (v) === "string" && v.length != 0); }; String.prototype.Trim = function (isall) { if (isall) { //清除所有空格 return this.replace(/\s/g, ""); } //清除两边空格 return this.replace(/^\s+|…
PS:有一小部分写在了 JS 2017了 JSON <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> IE8支持 JSON.stringify() <script> var book = { "title"…
main.js index.html与app.vue三者关系详解 2019年01月23日 11:12:15 Pecodo 阅读数 186   main.js与index.html是nodejs的项目启动的首加载页面资源与js资源,app.vue则是vue页面资源的首加载项 首先启动项目 v8找到index.html与main.js, 执行main.js时遇到 根据import加载app.vue文件(.vue文件可以不是叫app 可以是diyName.vue 但没必要) 然后new Vue的操作是…
原table2excel代码 /* * 采用jquery模板插件——jQuery Boilerplate * * Made by QuJun * 2017/01/10 */ //table2excel.js ; (function ($, window, document, undefined) { var pluginName = "table2excel", rootPath = "http://" + window.location.host, current…
Koa 框架教程   作者: 阮一峰 日期: 2017年8月 9日 Node 主要用在开发 Web 应用.这决定了使用 Node,往往离不开 Web 应用框架. Koa 就是一种简单好用的 Web 框架.它的特点是优雅.简洁.表达力强.自由度高.本身代码只有1000多行,所有功能都通过插件实现,很符合 Unix 哲学. 本文从零开始,循序渐进,教会你如何使用 Koa 写出自己的 Web 应用.每一步都有简洁易懂的示例,希望让大家一看就懂. 零.准备 首先,检查 Node 版本. $ node -…
Atitit 常用sdk 模块 组织架构切分 规范与范例attilax总结 常用200个模块 2017/04/12  22:01    <DIR>          acc 2017/04/12  22:01    <DIR>          agent 2017/04/12  22:01    <DIR>          agt 2017/04/12  22:01    <DIR>          agtCommiss 2017/04/12  22:…
代码: # 列出http://www.cnblogs.com/xiandedanteng中所有博文的标题 from bs4 import BeautifulSoup import requests user_agent='Mozilla/4.0 (compatible;MEIE 5.5;windows NT)' headers={'User-Agent':user_agent} for i in range(1,61): html=requests.get('http://www.cnblogs…