js常用几种类方法实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js常用几种类方法实现相关的知识,希望对你有一定的参考价值。

js定义类方法的常用几种定义

1 定义方法,方法中包含实现

function createCORSRequest() {
    var xhr = new XMLHttpRequest();
    
    xhr.onload = function () {
        console.log(‘Response : ‘ + xdr.responseText);
    };
    
    xhr.onerror = function () {
        console.log(‘Failed to retrieve data!‘);
    };

    return xhr;
}

 调用

var xhr = createCORSRequest();
 xhr.open(GET, https://www.hsbc.com.hk/zh-cn/index.html, true);
 xhr.send(null);

2 定义对象,用对象扩展方法

var img = new Image();
img.onload = function () {
    console.debug(‘request successfully.‘);
};

img.onerror = function () {
    console.debug(‘request failed‘);
}

img.src = ‘http://www.somesite.com/test?username=AndyLuo&ad=wealth‘;

3 定义类,用类实现方法

var Sign = {
    _businessId: 0,
    init: function () {
    },
    BindSignEvent: function (){
    
  } }

以上是关于js常用几种类方法实现的主要内容,如果未能解决你的问题,请参考以下文章

js常用代码片段

javascript JS-常用代码片段

js 常用代码片段

前端开发常用js代码片段

JS常用代码片段2-值得收藏

JS常用代码片段2-值得收藏