ボタン付きのフォームがあります。ユーザーがそれをクリックすると、javascript 関数で記述された onclick イベントがあります。同時に、フォームの値をサーバー上のテキスト ファイルに記録したいと考えています。これは php のコードによって行われています。ここに私のジレンマがあります:
タイプが「ボタン」に設定されている場合、onclick イベントは正常に機能しますが、フォームの値は php コードに取り込まれません。タイプが「Submit」に設定されている場合、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;
}
Update2: 読んだ後、私の最善の策は、AJAX 呼び出し php コードを使用して、TYPE "Button" として onclick イベント内に保持することです。特にパラメータを渡す方法など、誰もがそのような例を持っています。ありがとう。
Update3: AJAX 呼び出しの php コードを使用し、問題を解決しました。皆様、ご親切にありがとうございました。