GithubHelp home page GithubHelp logo

ambit-tsai / object-defineproperty-ie Goto Github PK

View Code? Open in Web Editor NEW
8.0 2.0 3.0 98 KB

A Object.defineProperty sham based on VBScript for IE

License: Apache License 2.0

JavaScript 100.00%
defineproperty ie8 vbscript javascript polyfill

object-defineproperty-ie's Introduction

简体中文 | English

Object.defineProperty Sham For IE  Version

A Object.defineProperty sham based on VBScript for IE. It also provides Object.defineProperties, Object.getOwnPropertyDescriptor, Object.getOwnPropertyDescriptors.

Notice

  1. In IE8, program will use native method defineProperty or getOwnPropertyDescriptor for Element object, doucment and window
  2. In other case, defineProperty will return a new VB object
  3. For VB object, it will not create new VB object when modifying the existing descriptor
  4. VB object can't add or delete properties freely
  5. VB object doesn't have [[Prototype]] or __proto__
  6. The property name of VB object can't contain special character ]
  7. The properties of VB object are enumerable, it's unaffected by descriptor enumerable

Installation

  1. Use NPM: npm install -S object-defineproperty-ie
  2. Download directly: Development Version, Production Version

Usage

<script src="path/to/object-defineproperty-ie.js" type="text/javascript"></script>
<script type="text/javascript">
    var temp;
    var obj = Object.defineProperties({}, {
        prop1: {
            enumerable: true,
            get: function () {
                return temp;
            },
            set: function (value) {
                temp = value;
            }
        },
        prop2: {
            enumerable: true,
            configurable: true,
            value: 'Hello World'
        },
    });
    obj.prop = 123;
    // obj => {
    //     prop1: 123,
    //     prop2: 'Hello World'
    // }

    Object.defineProperty(obj, 'prop2', {
        value: 'Ambit-Tsai'
    });
    // obj => {
    //     prop1: 123,
    //     prop2: 'Ambit-Tsai'
    // }

    var desc = Object.getOwnPropertyDescriptor(obj, 'prop2');
    // desc => {
    //     enumerable: true,
    //     configurable: true,
    //     writable: false,
    //     value: "Ambit-Tsai"
    // }
</script>

Testing

  1. Access GitHub Page online
  2. Access docs/index.html locally
  3. Tested in IE6, IE7, IE8

Contact Us

  1. WeChat: ambit_tsai
  2. QQ Group: 663286147
  3. E-mail: [email protected]

Reference

  1. 迷你MVVM框架avalon在兼容旧式IE做的努力

object-defineproperty-ie's People

Contributors

ambit-tsai avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

object-defineproperty-ie's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.