我的表单提交“搜索表单,登录表单,注册表单......”的“全部”存在问题。
问题显示,当我提交表单时,它不会将我带到操作页面,而是将我固定到我的根页面:“http://localhost/project/Home/”
这是我的搜索表格样本搜索成员或群组的用户选择,可以通过点击search.jpg提交
<form name="searchform" action='Searchb.php' method='GET' >
<a href="">
<img src="img/search.jpg" width="60" height="49" onClick="searchform.submit()" style="border-style: none">
</a>
<input type="text" name="Search" />
<label>member</label><input name="radio1" type="radio" value="Member" />
<label>Group</label> <input name="radio1" type="radio" value="Group" />
</form>"
答案 0 :(得分:2)
你的代码中有这个可能是问题:
<a href="">
<img src="img/search.jpg" width="60" height="49" onClick="searchform.submit()" style="border-style: none">
</a>
正如您所看到的那样,有一个空链接标记,当您单击它时,它会将您带到根本地主机文件...
您可以尝试这样做:
<a href="#" onClick="searchform.submit(); return false;">
<img src="img/search.jpg" width="60" height="49" style="border-style: none">
</a>
尝试一下,让我知道 拉吉斯拉夫