这是原型站点中的示例代码。

var url = '/proxy?url=' + encodeURIComponent('http://www.google.com/search?q=Prototype');
// notice the use of a proxy to circumvent the Same Origin Policy.

new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
    var notice = $('notice');
    if (transport.responseText.match(/href="http:\/\/prototypejs.org/))
      notice.update('Yeah! You are in the Top 10!').setStyle({ background: '#dfd' });
    else
      notice.update('Damn! You are beyond #10...').setStyle({ background: '#fdd' });
  }
});


来自ajax请求的数据可从transport.responseText获得,但是如果不仅是responseText,还有什么传输?

最佳答案

实际上,它是一个Ajax.Response对象。链接的页面列出了所有其他属性。它是对实际XMLHttpRequest对象的包装。

关于javascript - 带原型(prototype)的Ajax请求-如果不仅是responseText,什么是传输?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1037483/

10-09 23:38