我有一个用javascript完成的网站,一旦单击“保存”按钮就需要占位符,以便填写包含信息的表单...保存按钮和地址栏可以在下面的图片中看到 -
IMG http://i58.tinypic.com/j0yvqt.jpg
我希望在单击“保存”按钮时显示占位符,其中包含我插入数据库的信息。下面的第二张图片有望更好地证明我的观点。在调用japplications4.php文件之后,您可以看到地址栏位置应该调用的额外信息 - 如以下扩展名所示 - ?id13=Roberto&id13=Roberto
。
IMG http://i59.tinypic.com/hs7qzt.png
正如您在上面的链接中所看到的 - 文件名之后的扩展名应该将某些数据输入称为网站的占位符 - 地址栏中的信息可以在下面的示例中看到:
japplications4.php?id13=Roberto&id13=Roberto
比如说,插入的数据是使用变量$first_name
的第一个名称,我将其插入到带有“first_name”列的表单中 - 我已经得到了下面的代码,这样你就会变得更好我想做什么的想法...
这是javascript代码 - 在标题中:
<script type="text/javascript">
function validinput()
{
top.location="japplications4.php?id13="+document.getElementById("first_name").value+"&id13="+document.getElementById("first_name").innerHTML;
document.getElementById('myform').submit();
}
</script>
here's the html code for the form field as as well:
<H1 align="center"><p><br>JOB APPLICATION FORM</H1><p><br>
<form id="myform" action="" align="center" method="post" enctype="multipart/form-data">
<div id="div2">
<table border="1" cellspacing="0" style="margin-top:12px width="900"">
<colgroup>
<col span="1">
</colgroup>
<H2 align="center">FULL NAME</H2>
<br>
<tr>
<td valign="top">
<label for="first_name">First Name: </label>
</td>
<td valign="top">
<input type="text" id="first_name" name="first_name" maxlength="30" value="<?php if(isset($_POST['first_name'])) { echo $_POST['first_name']; } ?>" size="38">
</td>
</table>
<button type="submit" name="submitd" onClick="validinput()" value="Save"/>Save</button>
</form>
以下是我真正需要帮助的部分:
function validinput()
{
top.location="japplications4.php?id13="+document.getElementById("first_name").value+"&id13="+document.getElementById("first_name").innerHTML;
document.getElementById('myform').submit();
}
单击“保存”按钮时,将调用有效的输入函数。我希望位置栏的地址说"japplications4.php?id13="+_______"
。
当我输入名字- document.getElementById("first_name").innerHTML;
时,空白信息应来自表单字段。
我现在该怎么做才能解决这个问题以便解决问题?
我希望你能帮助我弄清楚这个小问题......