1

我有一段代码可以获取 Gmail 的未读计数。它使用 jQuery,我想知道如何在没有 Javascript 库的情况下使用 Javascript。

$.ajax({
  type: "GET",
  url: "https://mail.google.com/mail/feed/atom",
  dataType: "xml",
  success: parseXml
});

function parseXml(xml)
{
  var result = $(xml).find("fullcount").text();
  alert("count:" + result);
}
4

2 回答 2

1

试试这个

var  xmlhttp=new XMLHttpRequest();

xmlhttp.setRequestHeader("Access-Control-Allow-Origin","https://mail.google.com");
xmlhttp.open("POST","https://mail.google.com/mail/feed/atom",false,"username","pwd");
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
var mailCount=xmlDoc.getElementsByTagName("entry").length;
于 2012-11-04T03:38:34.320 回答
1

好的,解决了

xhrGmail = new XMLHttpRequest();
xhrGmail.open('GET','https://mail.google.com/mail/feed/atom')
xhrGmail.onload = function() { console.log(xhrGmail.responseText.split("<fullcount>")   [1].split("</fullcount>")[0]) }
xhrGmail.send(null);
于 2012-11-04T20:30:57.073 回答