• Javascript-数据类型

    JavaScript中的数据类型: 1.数值类型 JavaScript将整数和浮点数(小数)都视为浮点数(float)。 1 var IntVariable; 2 3 IntVariable = 10; 2.文本数据 包含一个或多个字符的文本称为字符串。 ps:双引号(")或单引号(')括起来的文本数据。 1 var FloatVariable;...

    2019-02-17 01:48:41

  • 富文本编辑器Quill(二)上传图片与视频

    image与video在Quill formats中属于Embeds,要在富文本中插入图片或者视频需要使用insertEmbed api。 insertEmbed insertEmbed(index: Number, type: String, value: any, source: String = 'api'): Delta 插入图片需要位置,内容类型以及图片的url: quill.insertEmbe...

    2019-01-23 07:40:45

  • 199,一个被正则表达式遗忘的号码段?

    前不久换手机号,东想西想,最后选了个电信的199号码段。这下好了,当我注册某些网站的账号时,弹出个非法号码字段,惊了!怎么回事??? 于是想到:当我们注册某网站的时候,需要输入手机号进行注册。比如唯品会的注册界面,当你输入的手机号不对时就会出现错误提示...

    2019-01-23 07:40:44

  • JavaScript实现循环链表

    单链表地址:点我 一、循环链表 节点的next指向下一个节点,节点的prev指向上一个节点 function loopList() {let length = 0,head = null,tail = nullthis.append = (data) = {let node = new Node(data),currentif(head === null) {head = nodetail = node}else {curr...

    2019-01-23 07:40:41

  • Vue单页面应用阻止浏览器记住密码

    Vue单页面应用阻止浏览器记住密码 IT唐伯虎 摘要: Vue单页面应用阻止浏览器记住密码。 现象1:路由切换时再次提示是否记住密码 登录页面有个密码输入框,输入账号密码进行登录; 登录完成后vue路由跳转到主页,这时候浏览器提示是否记住密码,我选否; 然后我点菜单跳...

    2019-01-23 07:40:35

  • HTML5网页点击分享到whatsapp

    一、在网页头部加入分享标题和url,代码如下: meta name ="whatsapp:url" class ="share_url" content ="http://www.abc.com" meta name ="whatsapp:title" class ="share_title" content ="测试分享到whatsapp" 二、HTML代码如下: a href ="javascript:whatsApp();"...

    2019-01-23 07:40:30

  • vis.js 4.21.0 Timeline localization

    from:http://visjs.org/timeline_examples.html https://github.com/almende/vis https://github.com/moment/moment/ https://momentjs.com/ htmlheadmeta http-equiv="X-UA-Compatible" content="IE=edge"meta name="viewport" content="width=device-width,initial-s...

    2019-01-23 07:40:17

  • 富文本编辑器Quill(一)简单介绍

    Quill是一个很流行的富文本编辑器,github上star大约21k: github:https://github.com/quilljs/quill/ 官网:https://quilljs.com/ 使用 !-- Include stylesheet --link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet"!-- Create the editor...

    2019-01-23 07:40:11

  • ES6之class 中 constructor 方法 和 super 的作用

    首先,ES6 的 class 属于一种“语法糖”,所以只是写法更加优雅,更加像面对对象的编程,其思想和 ES5 是一致的。 function Point(x, y) { this .x = x; this .y = y;}Point.prototype.toString = function () { return '(' + this .x + ',' + this .y + ')' ;} 等同于...

    2019-01-23 07:40:07

  • js学习之路1 初识js函数

    简单的函数: htmlheadscript type="text/javascript" function myfunction(){ alert( "您好!" )} /script/headforminput type="button" onclick="myfunction()" value="调用函数"p通过点击这个按钮,可以调用一个函数。该函数会提示一条消息。/p/body/html...

    2019-01-23 07:40:02

2