ajax如何实现在一个a.html页面中获取b.html页面<title>标记内的内容
我有一个a.html页面,代码如下:<scriptlanguage="javascript"type="text/javascript">varxmlHttp;try{x...
我有一个a.html页面,代码如下:
<script language="javascript" type="text/javascript">
var xmlHttp;
try{
xmlHttp = new ActiveXObject('Msxml2.XMLHTTP');
}catch(ex){
try{
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}catch(ex){
try{
xmlHttp = new XMLHttpRequest();
}catch(ex){}
}
}
xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
//这里我要获得b.html页面中<title>标记的内容,该如何实现????请大家帮忙,万分感谢
}else{
alert(xmlHttp.status);
}
}
}
xmlHttp.open("get","b.html");
xmlHttp.send(null);
</script>
有一个b.html页面,代码如下:
<html>
<head>
<title>I'm a student!</title>
</head>
<body>
<div id="accept">
hello,world!
</div>
</body>
</html> 展开
<script language="javascript" type="text/javascript">
var xmlHttp;
try{
xmlHttp = new ActiveXObject('Msxml2.XMLHTTP');
}catch(ex){
try{
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}catch(ex){
try{
xmlHttp = new XMLHttpRequest();
}catch(ex){}
}
}
xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
//这里我要获得b.html页面中<title>标记的内容,该如何实现????请大家帮忙,万分感谢
}else{
alert(xmlHttp.status);
}
}
}
xmlHttp.open("get","b.html");
xmlHttp.send(null);
</script>
有一个b.html页面,代码如下:
<html>
<head>
<title>I'm a student!</title>
</head>
<body>
<div id="accept">
hello,world!
</div>
</body>
</html> 展开
2个回答
展开全部
我只知道js获取title是document.title,不信你写个按钮,onclick="alert(document.title);"就弹出来了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我只会用js或vbs获取
//a.html
<script>
var nw=window.open("b.html","","width=10,height=10")
title=nw.document.title
nw.close()
</script>
//a.html
<script>
var nw=window.open("b.html","","width=10,height=10")
title=nw.document.title
nw.close()
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询