Js
牙痛不要紧
这个作者很懒,什么都没留下…
展开
-
学习笔记之原型模式 prototype
自定义一个空对象Person = function(){}使用prototype给Person设置公共的值Person.prototype.name = "zhangsan";Person.prototype.age = 22;Person.prototype.say = function(){ alert("hello");原创 2015-12-09 15:20:28 · 325 阅读 · 0 评论 -
学习笔记代码,js 之构造函数
//创建一个构造函数function Person(name,age){ this.name = name; this.age = age; this.sayHi = function(){ alert(this.name); }}// 使用new 创建一个Person实例 var person2 = new Person("lisi",30);原创 2015-12-09 15:01:16 · 324 阅读 · 0 评论 -
转 JavaScript 获取鼠标点击位置坐标
js获取鼠标位置的各种方法 转 JavaScript 获取鼠标点击位置坐标在一些DOM操作中我们经常会跟元素的位置打交道,鼠标交互式一个经常用到的方面,令人失望的是不同的浏览器下会有不同的结果甚至是有的浏览器下没结果,这篇文章就上鼠标点击位置坐标获取做一些简单的总结,没特殊声明代码在IE8,FireFox,Chrome下进行测试兼容 (1)相对转载 2015-12-15 14:52:04 · 578 阅读 · 0 评论 -
学习笔记之重写原型
重写原型相对的比较简单function Person(){} Person.prototype = { name : "zhangsan", age : 22, sayHi : function(){ alert("hi"); }}当重写原型后,实例的构造器将不在指向原型,而是Object,虽然用instanceof判断没有问题,实例依旧是Person,但c原创 2015-12-09 17:51:13 · 373 阅读 · 0 评论 -
CKEditor 添加自定义插件
转自:crying_boy第一步:config.js中config.extraPlugins = '插件名称';//注册插件第二步:plugins文件夹下新建:插件名称 文件夹第三步:1:在plugins/插件名称/下新建plugin.js;2:在plugins/插件名称/下新建 dialogs文件夹,并在其内新建 "插件名称.js"(function(转载 2016-03-10 13:16:22 · 7018 阅读 · 1 评论 -
js中date时间转换yyyy-mm-dd hh:MM:ss等格式字符串
js 获取当前日期时间 格式为 yyyy-mm-dd hh:MM:ssDate.prototype.format = function (format) { var args = { "M+": this.getMonth() + 1, "d+": this.getDate(),转载 2016-04-29 09:57:09 · 11977 阅读 · 0 评论 -
js控制ctrl+c 和 ctrl+v 不可使用
document.oncontextmenu = function(){ return false; } document.onkeydown = function(){ if (event.ctrlKey && window.event.keyCode==67){ return false; } if (event.ctrlKey && window.event.key原创 2016-06-29 17:53:28 · 5788 阅读 · 0 评论 -
js 控制鼠标右键不可使用
if (window.Event){ document.captureEvents(Event.MOUSEUP); } function nocontextmenu() { event.cancelBubble = true; event.returnValue = false; return false; } function nori原创 2016-06-29 17:58:39 · 1343 阅读 · 1 评论 -
html嵌套flash播放swf文件
用 JavaScript 调用 Flash 分两步 一: 写一个flash.js 文件function playswf(sFile,sWidth,sHeight){document.write('http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width=转载 2016-07-27 16:25:22 · 805 阅读 · 0 评论