1. 找出下面的javascript中值不为false的表达式: false NaN 0 -0 Boolean(5>6) null undefined "" 5/"test" 5*"Ten" 5+"-5" 5-"5" -15 +0 ...

    阅读全文
  2. js压缩工具2014-06-28

    最常用的压缩工具有: YUI Compressor Google Closure Compiler(压缩率比较高), 具体请参考: http://blog.csdn.net/borishuai/article/details/8477514 UglifyJS (UglifyJS的出名是由于它代替Closure Compiler成为jQuery项目的压缩工具。) YUI Compressor 下载地址: ...

    阅读全文
  3. #1. google code prettify的说明文档: https://google-code-prettify.googlecode.com/svn/trunk/README.html  #2.下载google-code-prettify http://code.google.com/p/google-code-prettify/downloads/list 此处可以选择prettify-small-4-Mar-2013.tar.bz2 ...

    阅读全文
  4. js模拟的类亦可以模拟类方法和实例方法,原理仍然是prototype和属性的区别。 静态方法是指不需要声明类的实例就可以使用的方法。 实例方法是指必须要先使用"new"关键字声明一个类的实例, 然后才可以通过此实例访问的方法。 function staticClass() { }; //声明一个类 staticClass.staticMethod = function() { alert("static method") }; // ...

    阅读全文
  5. 百度地图的功能列表: 基本地图功能:展示(支持2D图、3D图、卫星图)、平移、缩放、拖拽等。 地图控件展示功能:可以在地图上添加/删除鹰眼、工具条、比例尺、自定义版权、地图类型及定位控件,并可以设置各类控件的显示位置。 覆盖物功能:支持在地图上添加/删除点、线、面、热区、行政区划、用户自定义覆盖物等;开源库提供富标注、标注管理器、聚合marker、自定义覆盖物等功能。 工具类功能:提供经纬度坐标与屏幕坐标互转功能;开源库里提供测距、几何运算及GPS坐标/国测局坐标转百度坐 ...

    阅读全文
  6. 网页title滚动效果是实现其实就是通过js来定期修改title。 如网上的示例: <html> <head> <title>滚动的文字在TITLE栏上不停滚动</title><script language=javascript > var text=document.title var timerID function newtext() { clearTimeout(timerID) document ...

    阅读全文
  7. Raphaël is a small JavaScript library that should simplify your work with vector graphics on the web. If you want to create your own specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this libr ...

    阅读全文
  8. 安装VJET时遇到的问题。 Eclipse版本: 通过Eclipse Marketplace安装VJET时遇到的错误: Cannot complete the install because one or more required items could not be found. Software being installed: Eclipse VJET JavaScript IDE (Incubation) 0.10.0.201303191704 (o ...

    阅读全文
  9. 推荐阅读 http://dmitrysoshnikov.com/ecmascript/javascript-the-core/  stockoverflow的图解: 说明: Object.__proto__指向Function.prototype Function.__proto__指向Function.prototype Cat.__proto__指向Function.prototype mycat.__proto__指向Cat.prot ...

    阅读全文
  10. 在学习Javascript的prototype与__proto__区别时,发现了这样一篇介绍javascript核心的好文章。原文:javascript the core. 本想阅读后好好整理翻译下,不过网上已经有很好的翻译文章,就此省略,链接在此。这里只作简单摘要: javascript核心概念: An Object 对象 An object is a collection of properties and has a single prototype object ...

    阅读全文