哈希在行动中意味着什么="#"在html表单标签中

时间:2015-08-09 23:19:36

标签: html

对于行动来说意味着什么="#"在html表单标签中。 例如,

<form action="#" method="post" class="demoForm" id="demoForm">

    <fieldset>
        <legend>Demo: Checkboxes Sharing Same Name</legend>

    <p>Check the types of sports or fitness activities you engage in on a regular basis.</p>

    <p>
        <label><input type="checkbox" name="sports[]" value="cycling" /> cycling</label>
        <label><input type="checkbox" name="sports[]" value="running" /> running</label>
        <label><input type="checkbox" name="sports[]" value="other" /> other</label>
    </p>

    </fieldset>

</form>

2 个答案:

答案 0 :(得分:4)

'#'将表单操作网址提交给自己(表单所在的页面网址)。 虽然有更好的技术,但主要用于虚拟目的和相同的页面形式提交。 看看这个答案

what does it mean form action attribute

答案 1 :(得分:0)

#表示没有外部重定向。换句话说,没有链接到另一个单独的页面。如果需要引用,那么所有内容都应仅在该页面内引用。

<form>标记中的

<form action="#">表示单击表单的提交按钮时,不必将收集的数据重定向到任何其他页面。

<a>标记中的

<a href="#">表示点击链接时,不要重定向到任何页面。请留在同一页面上。

所以简单地在Web开发中(在HTML中)&#34;#&#34;意味着没有联系。 :)