html页面互相传值的问题解决方案
第一次使用随笔,感觉还是蛮别扭的
a.html
复制代码代码如下:
demo
b.html
复制代码代码如下:
New Document
<script LANGUAGE="JavaScript">
document.write(location+"
");
document.write(location.search+"
");
document.write(decodeURIComponent(location.search.substr(location.search.indexOf("=")+1)));
</script>
a.html
复制代码代码如下:
b.html
复制代码代码如下:
<script LANGUAGE="JavaScript">
document.write(location+"
");
document.write(location.search+"
");
document.write(decodeURIComponent(location.search.substr(location.search.indexOf("=")+1)));
</script>
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/web/HTML/71245.html