我有一个在网站框架中工作的小 html 文件。它当前请求一个邮政编码,然后调用一个 php 页面来查询数据库。iframe 从父页面获取 id 号,然后从自己的页面获取邮政编码。这是代码片段。
<script>
pid = window.location.search;
pid = pid.substring(11,16)
htmlout = '<input type = "hidden" name = "productid" id = "productid" value = "' + pid + '">';
</script>
<body style="margin: 0px; background-color: #ECECEC;">
<form action="https://www.net10wirelessphones.com/Mini-zip-Lookup.html" style="text-align: left" method = "get">
<script>
document.write(htmlout);
</script><span style="font-size: 9pt"><span style="font-family: Arial, Helvetica, sans-serif; color: #444444">Verify coverage in your area. Enter your Zip Code:
</span>
</span>
<input name="zip" size="5" type="text" />
<input type="submit" value="GO" /> </form>
但是,当我输入邮政编码 00631 时,它只会转到网站 http://www.net10wirelessphones.com/Mini-zip-Lookup.html?zip=00631
它似乎从形式中切断了隐藏的价值。关于我可能做错了什么的任何建议?
编辑:对于那些想要尝试的人,请使用邮政编码 00631 和产品 ID 17637 进行尝试。它应该接受此选项并直接进入 zipsuccess 页面。
编辑:另外,如果您想从一开始就看到它,请转到页面https://www.net10wirelessphones.com/zipstart.html?productid=17637。对不起,我忘了把它包括在那些已经尝试过的人身上。