我正试图指出对功能原型进行约束的适当位置,以便日后称作。 例子的全文见:
http://www.iprosites.com/jso/。
我的 j夫例子非常基本:
function Obj(width, height){
this.width = width;
this.height = height;
}
Obj.prototype.test = function(){
var xhr=init();
xhr.open( GET , ?ajax=test , true);
xhr.setRequestHeader( Content-Type , application/x-www-form-urlencoded; charset=UTF-8 );
xhr.onreadystatechange = function() {
if (xhr.responseText == 403 ) {
window.location.reload(false);
}
if (xhr.readyState == 4 && xhr.status == 200) {
this.response = parseResponse(xhr.responseText);
document.getElementById( resp ).innerHTML = this.response.return_value;
this.doAnotherAction();
}
};
xhr.send();
}
Obj.prototype.doAnotherAction = function(){
alert( Another Action Done );
}
var myo = new Obj(4, 6);
如果你试图在大火中进行原状测试,你就会得到“这种行动不是功能”。 测试中可发现2项辅助职能(即)和4项。 j 如果你想看到这些联系,但不应与这一问题太相关。 我申明这一点。 反其他行动认为,“这”是指从试验中预期的XMLHttpResponse物体。
谁能以有约束力的方式帮助了解方向? 我所尝试的一切似乎都不奏效!
我确实使用Mootools,尽管图书馆没有出席这一榜样。
提前感谢,
Arion