gpt4 book ai didi

html - name ="..."属性在输入中的作用是什么?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:37 24 4
gpt4 key购买 nike

在这个表单代码中,name="" 属性的作用是什么?

name="s"name="submit"

有必要加吗?

<form action="/index.php" method="get">
<fieldset>
<legend>Search</legend>
<label for="s"><span>Search WaSP</span>
<input value="" name="s" id="s"></label>
<input type="submit" value="Go!" name="submit" >
</fieldset>
</form>

最佳答案

提交表单时,name ( "control name" ) 将被传递到查询字符串中。这不同于 the id attribute用于UA(浏览器)唯一标识一个元素。

使用name,查询就像

/index.php?s=&submit=Go!

没有name,查询会像

/index.php

关于html - name ="..."属性在输入中的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2895089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com