DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> js常用幾種類方法實現
js常用幾種類方法實現
編輯:JavaScript基礎知識     

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 (){
    
  } }
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved