gpt4 book ai didi

javascript - 如何更改元素的值

转载 作者:行者123 更新时间:2023-11-30 17:05:59 25 4
gpt4 key购买 nike

我对 js 有点陌生,正在尝试更改“电子邮件”输入字段的值

<div class="input-group type-email">
<div class="input-label has-placeholder-label">
<label for="">Your Email Address</label>
</div>
<div class="inputs">
<input name="email" value="" placeholder="" type="email">
</div>
</div>

我找到了一堆文章,说如何通过 id 查找元素。如果没有 id,我怎么能按类型来做呢?谢谢。

最佳答案

您可以使用查询选择器,例如:

var input = document.querySelector("input[name=email]");
input.value = "Your new value";

关于查询选择器的更多信息 here还有here .

希望对您有所帮助!

关于javascript - 如何更改元素的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28016507/

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