gpt4 book ai didi

javascript - 与 jquery 相关的输入值?

转载 作者:太空宇宙 更新时间:2023-11-04 15:00:51 25 4
gpt4 key购买 nike

我有几个具有占位符的输入,而不是每当我关注输入时我想通过警报或在 div 中获取占位符值。我的代码(示例);html

<input type="text" placeholder="Name">
<input type="text" placeholder="Phone:">
<input type="text" placeholder="Email">

和我的 js 文件:

var plchold = ('input[type=text]').attr('placeholder');
$("<div class='field-label'><p>"+plchold+"</p></div>").prependTo(".wrap-field");

但它只是为我提供了所有输入的第一个占位符值。

我知道它必须与 $(this) 但我不知道如何:)

最佳答案

试试这个:

$('input[type=text]').focus(function(){
var plchold = $(this).attr('placeholder');
$("<div class='field-label'><p>"+plchold+"</p></div>").prependTo(".wrap-field");
});

关于javascript - 与 jquery 相关的输入值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34430907/

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