javascript获取指定网页的内容?
a.asp中:<%c="aaaaaaaa"response.write(c)%>b.htm中:<inputtype="text"name="textfield"id="a...
a.asp中:
<%
c="aaaaaaaa"
response.write(c)
%>
b.htm中:
<input type="text" name="textfield" id="aaa">
问题:
如何用最简单的javascript方法在b.htm中实现获取a.asp的内容,让此文本框中内容为"aaaaaaaa"?
(不用XMLHTTP(AJAX)的方法,因为这个当遇到UTF问题要进行编码转换。)
(除非没有其它办法,最好也不要用<iframe src="a.asp"...,因为这样刷新时会非常明显。)
我不是很熟悉javascript,但感觉可以用很简单的方法实现这个,希望高手指教谢谢。 展开
<%
c="aaaaaaaa"
response.write(c)
%>
b.htm中:
<input type="text" name="textfield" id="aaa">
问题:
如何用最简单的javascript方法在b.htm中实现获取a.asp的内容,让此文本框中内容为"aaaaaaaa"?
(不用XMLHTTP(AJAX)的方法,因为这个当遇到UTF问题要进行编码转换。)
(除非没有其它办法,最好也不要用<iframe src="a.asp"...,因为这样刷新时会非常明显。)
我不是很熟悉javascript,但感觉可以用很简单的方法实现这个,希望高手指教谢谢。 展开
8个回答
展开全部
下边是我做的两个静态的测试页,只要将你的a.asp中的代码变成
<span id="aa">
<%
c="aaaaaaaa"
response.write(c)
%></span>
用JavaScript从两个页面取值,就是两个窗口的父子关系,都可以做到,但这样做的问题是要两个窗口都存在,即B.html要么是open出来的,要么就是嵌在a.asp的一个div,iframe,或什么东西中.
我曾尝试从A转到B,取A的值,没有成功.
a.html
<HTML>
<HEAD>
</HEAD>
<script>
function fun(){
var param = "width = 590px,height=420px,menubar = no,toolbar = no,location = no,directries = no,scrollbars = no,status = no,resizable = no, left= 220, top = 150";
window.open("b.html","",param);
}
</script>
<BODY>
<span id="aa">aaaaaa</span>
<input type="button" value="c" onclick="fun();">
</BODY>
</HTML>
b.html
<HTML>
<HEAD>
</HEAD>
<script>
function fun(){
document.getElementById("a").value= window.opener.document.getElementById("aa").innerText;
}
</script>
<BODY onload="fun();">
<input type="text" id="a" value="">
</BODY>
</HTML>
<span id="aa">
<%
c="aaaaaaaa"
response.write(c)
%></span>
用JavaScript从两个页面取值,就是两个窗口的父子关系,都可以做到,但这样做的问题是要两个窗口都存在,即B.html要么是open出来的,要么就是嵌在a.asp的一个div,iframe,或什么东西中.
我曾尝试从A转到B,取A的值,没有成功.
a.html
<HTML>
<HEAD>
</HEAD>
<script>
function fun(){
var param = "width = 590px,height=420px,menubar = no,toolbar = no,location = no,directries = no,scrollbars = no,status = no,resizable = no, left= 220, top = 150";
window.open("b.html","",param);
}
</script>
<BODY>
<span id="aa">aaaaaa</span>
<input type="button" value="c" onclick="fun();">
</BODY>
</HTML>
b.html
<HTML>
<HEAD>
</HEAD>
<script>
function fun(){
document.getElementById("a").value= window.opener.document.getElementById("aa").innerText;
}
</script>
<BODY onload="fun();">
<input type="text" id="a" value="">
</BODY>
</HTML>
展开全部
ajax是最好的选择,为什么不用呢
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script type="text/javascript">
var xmlHttp;
function createXmlHttp() {
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
} else {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
function load1() {
createXmlHttp();
xmlHttp.onreadystatechange = load2;
xmlHttp.open("get","a.asp",true);
xmlHttp.send(null);
}
function load2() {
if (xmlHttp.readyState == 4) {
document.getElementById("aaa").value=xmlHttp.responseText;
}
}
</script>
</head>
<body onload="load1();">
<input type="text" name="textfield" id="aaa" />
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script type="text/javascript">
var xmlHttp;
function createXmlHttp() {
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
} else {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
function load1() {
createXmlHttp();
xmlHttp.onreadystatechange = load2;
xmlHttp.open("get","a.asp",true);
xmlHttp.send(null);
}
function load2() {
if (xmlHttp.readyState == 4) {
document.getElementById("aaa").value=xmlHttp.responseText;
}
}
</script>
</head>
<body onload="load1();">
<input type="text" name="textfield" id="aaa" />
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
c="aaaaaaaa"
response.write(c)
%>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="aaa" id="textfield" value="" />
</form>
<script language="javascript">
form1.aaa.value="<%=c%>";
</script>
c="aaaaaaaa"
response.write(c)
%>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="aaa" id="textfield" value="" />
</form>
<script language="javascript">
form1.aaa.value="<%=c%>";
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
b.htm
<html>
<body>
<script language="javascript" src="a.asp"></script>
</body>
</html>
a.asp
<html>
<body>
<%
c = "aaaaaaa";
response.write("document.writeln('<input type=\"text\" name=\"textfield\" id=\"aaa\" value=\""+c+"\"");
%>
</body>
</html>
ok?
<html>
<body>
<script language="javascript" src="a.asp"></script>
</body>
</html>
a.asp
<html>
<body>
<%
c = "aaaaaaa";
response.write("document.writeln('<input type=\"text\" name=\"textfield\" id=\"aaa\" value=\""+c+"\"");
%>
</body>
</html>
ok?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
asp运行于服务器端,而javascript运行于客户端.只通过静态页面应该做不到你所说的要求吧.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询