我有一个带有按钮的表单。当用户点击它时,会有一个用javascript函数编写的onclick事件。同时,我想将表单值记录到服务器上的文本文件中。这是由一段 php 代码完成的。这是我的困境:
如果类型设置为“按钮”,则 onclick 事件可以正常工作,但不会将表单值带到 php 代码中。如果类型设置为“提交”,则 php 代码运行良好但 onclick 事件被超越。
我的问题是:是否有一个简单的解决方案可以解决?谢谢你。
更新:在这里感谢大家的帮助。到目前为止,我还没有找到解决方案。问题是一旦表单的提交功能进入,iframe 内容将不会加载。以下是关键代码。
/**** index.php: ****/
<form id="form1" name= "form1" method="post" >
<center>
<table>
<tr>
<td><b><p id="zip_code">Enter Zip Code:</p></b></td>
<td><input id="zipcode" name="zipcode" placeholder="12345" type="text" /></td>
</tr>
</table>
</center>
<input value="Check Inventory" onclick="getwebURL()" type="button" />
</form>
/** the onclick event will update the iframe contents **/
<iframe id="myFrame2" src="" name="myFrame2" height="1026" width="100%"></iframe>
/** php code that will record user inputs with time stamp **/
<?php
ini_set("auto_detect_line_endings", true);
// Get the zip code they entered in the form
$zipcode = $_POST['zipcode'];
// We want the file to be a text file right?
$ex = "record.txt";
// Try to open a file named $file$ex (johndoe.txt for example)
// Because this file doesn't exist yet the server creates it
$write = fopen("$ex","a");
// Now open the file up again but this time save the email in it
$savestring = $zipcode . "," . date("c") . "," . "\n";
fwrite($write,$savestring);
// MAKE SURE you close the file!!!
fclose($write);
?>
/**** Javascript that has getwebURL() function ****/
function getwebURL()
{
document.getElementById('myFrame2').src='http://www.example.com?zipCode='+document.getElementById('zipcode').value;
}
更新2:阅读后,似乎我最好的选择是将其保留为类型“按钮”并在 onclick 事件中,使用 AJAX 调用 php 代码。任何人都有这样的例子,特别是如何传递参数。谢谢。
Update3:使用 AJAX 调用 php 代码并解决了问题。谢谢大家的帮助。