在互联网探索者(IE6、IE7和IE8)中,除“0x00”外的特性外,任何特性(数据)。
我收到了日本宇宙航空研究开发机构的请求,如:
var pages = 10;
var nextnoteid = 0;
for (isub = 1; isub <= pages; isub++)
{
var c = "http://www.site.com/application.exe?id=" + nextnoteid;
$.ajax(
{
url: c,
cache: false,
async: false,
success: function(data)
{
var start = data.indexOf("NEXTNOTEID") + 10;
// save the id of the next note to retrieve
nextnoteid = data.substring(start, start + 16).trim();
data = data.substring(0, start - 10);
// append note to DOM
$("#printarea").append("<pre class= pxprintpage >" + data + "</pre>");
}
});
}
答复按以下格式(即0x00特性)重新作出:
Note Title Note Author ... simple text note ... __________NEXTNOTEID__________9827482998274829__________
我如何能够在0x00之后,在IE6、IE7和IE8中获取这一数据,而不会改变反应?