是否可以从responsetext获取id而不先打印出来?

时间:2011-11-04 03:56:27

标签: ajax

function somefunction()
{
var xmlhttp;

if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert(xmlhttp.responseText.getElementById('someid').innerHTML);
}
}
xmlhttp.open("GET","1.php",true);
xmlhttp.send();
}

xmlhttp的响应是这个

<p id="someid">100</p>

我需要从id“someid”获得“100”

尝试使用此

alert(xmlhttp.responseText.getElementById('someid').innerHTML);

但它不起作用。

还有另一种方法吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

在jquery中你可以,

$.ajax({
type: "GET",
url: "1.php",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
    alert($('#SomeID',response.d));
    alert($('#SomeID',$('<div/>').html(response.d)));
},
failure: function(msg) {
    alert(msg);
}