我的问题是我应该将两个 html 页面转换为 php 页面,以便被调用的页面可以访问其 POSTed 参数,还是有一种方法可以让被调用的 html(.html 扩展名)页面访问已发布的参数?
我一直在阅读,因为发布的参数是服务器端的,所以 JavaScript 无法在客户端执行此操作。如果通过 POST 访问该 .html 页面,我没有看到任何关于访问参数的 html 页面。
这是我的电话表格。被调用的表单需要访问 TransDesc(如下),这是一个文本字段。
<script type="text/javascript" language="JavaScript1.2">
// Check where we came from so that we can go to the right spot when the
// form gets posted from outside of our HTML tree.
var PostURL = '/event.html';
</script>
Enter a Donation Amount
<script type="text/javascript" language="JavaScript1.2">
document.write(
'<form name="InvGenPayDonation"
action="'+PostURL+'"
onsubmit="return validateForm();"
method=POST>');
</script>
<p> $ <input type='text' name='Amount' value="0.00">
</p>
<p>In honor of <span style="color: #FF0000">
<input type='text' name='TransDesc' id='TransDesc' value="" >
</p>
<input type="submit" value="Next"> <br /><br />