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);
但它不起作用。
还有另一种方法吗?
提前致谢
答案 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);
}