gpt4 book ai didi

javascript - 使用 jQuery/Javascript 放置占位符

转载 作者:数据小太阳 更新时间:2023-10-29 04:40:06 25 4
gpt4 key购买 nike

如果只有一个 <input>,我可以通过 jQuery 放置一个占位符在页面上:

<input type="text"/>

$(document).ready(function() {
placeholders();
function placeholders() {
$('input[type=text]').each(function() {

$(this).attr('placeholder', 'hello' );
});
}
});

但是,我有多个 <input>单个页面中的字段如下:

<input type="text" class="first">
<input type="text" class="second">

我只想在第一个 <input type="text"> 上添加一个占位符有 class="first" .

如何向第一个匹配文本添加占位符 input只有?

最佳答案

$('input[type=text].first').attr('placeholder', 'hello' );

这里input会选择所有的input标签[type=text]会选择类型为text的input然后 .first 将选择具有类 first 的子集。

如果你想用 first 类选择第一个输入,那么做 $('input[type=text].first').first()

关于javascript - 使用 jQuery/Javascript 放置占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34328860/

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