gpt4 book ai didi

jquery - 如何使用 jQuery 将文本附加到文本框值?

转载 作者:行者123 更新时间:2023-12-03 22:34:44 25 4
gpt4 key购买 nike

我需要将 - 附加到当前文本框值而不替换当前文本。我尝试使用这段代码。

if(len.length==4){
$("-").appendTo("#date").val();
}

但是失败了。

最佳答案

虽然您得到了几个(但不是全部)正确答案,但我想展示另一种方法:

$('#date').val(function(index, value) {
return value + '-';
});​

.val( 函数(索引, 值) )

function(index, value)A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.

source

如果您不想使用function来执行此操作,请使用:

var $date = $('#date');
$date.val($date.val() + '-');

关于jquery - 如何使用 jQuery 将文本附加到文本框值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10293001/

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