用js,jquery或者ajax获取a.html 的有些标签内容和地址,放到b.html了有些input的value直上。
a.html代码///////////////////////////////////////////////////////////////<atitle="Title...
a.html代码
///////////////////////////////////////////////////////////////
<a title="Title" id="Title" >我的标题</a>
<tbody>
<tr>
<td class="Introduction">Introduction</td>
</tr>
</tbody>
<a title="Get" id="Get">点击我就去b.html</a> <!--*点击这个后信息发送b.html-->
////////////////////////////////////////////////////////////////////
b.html的代码
///////////////////////////////////////////////////////////////////
<body>
<input type="text" name="Title" size="60" maxlength="255"/> <!--*在这儿获取a.html里面id="Title"标签内容-->
<br />
<br />
<textarea name="Introduction" cols="70" rows="6" wrap="off"></textarea><!--*在这儿获取a.html里面的class="Introduction"标签内容-->
<br />
<br />
<input type="text" name="FromLink" size="40" value="" maxlength="255" class="Text" style="direction:ltr"/><!--*在这儿获取a.html的地址-->
</body>
//////////////////////////////////////////////////////////////////////// 展开
///////////////////////////////////////////////////////////////
<a title="Title" id="Title" >我的标题</a>
<tbody>
<tr>
<td class="Introduction">Introduction</td>
</tr>
</tbody>
<a title="Get" id="Get">点击我就去b.html</a> <!--*点击这个后信息发送b.html-->
////////////////////////////////////////////////////////////////////
b.html的代码
///////////////////////////////////////////////////////////////////
<body>
<input type="text" name="Title" size="60" maxlength="255"/> <!--*在这儿获取a.html里面id="Title"标签内容-->
<br />
<br />
<textarea name="Introduction" cols="70" rows="6" wrap="off"></textarea><!--*在这儿获取a.html里面的class="Introduction"标签内容-->
<br />
<br />
<input type="text" name="FromLink" size="40" value="" maxlength="255" class="Text" style="direction:ltr"/><!--*在这儿获取a.html的地址-->
</body>
//////////////////////////////////////////////////////////////////////// 展开
2个回答
展开全部
因为静态页面之间很难直接获取参数,一个笨方法就是通过url传递参数,然后在另外一个页面用javascript解析url,下面的代码可供参考:
<script>
urlinfo=window.location.href; //获取当前页面的url
len=urlinfo.length;//获取url的长度
offset=urlinfo.indexOf("?");//设置参数字符串开始的位置
newsidinfo=urlinfo.substr(offset,len)//取出参数字符串 这里会获得类似“id=1”这样的字符串
newsids=newsidinfo.split("=");//对获得的参数字符串按照“=”进行分割
newsid=newsids[1];//得到参数值
alert("您要传递的参数值是"+newsid);
</script>
然后就是利用js设置值到b.html中
<script>
urlinfo=window.location.href; //获取当前页面的url
len=urlinfo.length;//获取url的长度
offset=urlinfo.indexOf("?");//设置参数字符串开始的位置
newsidinfo=urlinfo.substr(offset,len)//取出参数字符串 这里会获得类似“id=1”这样的字符串
newsids=newsidinfo.split("=");//对获得的参数字符串按照“=”进行分割
newsid=newsids[1];//得到参数值
alert("您要传递的参数值是"+newsid);
</script>
然后就是利用js设置值到b.html中
追问
不太明白,,能不能给我仔细的解析
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询