我有一个HTML表单,我希望能够使用当前的哈希位置提交
<form action="editcustomer.php?seq=<?php echo $_GET["seq"]; ?>#" method="post" name="form1">
这可能吗?
答案 0 :(得分:1)
要获取当前哈希值,您需要这样的内容:
<form onSubmit="this.action='editcustomer.php'+location.hash" action="editcustomer.php" method="post" name="form">
偏离主题:通常的做法是这样做,因为它可以跳转到添加的锚点,例如直接转到提交的表单(#form-xy),从而增强用户体验。