gpt4 book ai didi

javascript - 日期选择器 JS : how to have it work on multiple form fields

转载 作者:行者123 更新时间:2023-11-29 17:15:43 25 4
gpt4 key购买 nike

我在 WP 中使用这个插件: http://wordpress.org/plugins/cf7-datepicker-alternative/

.js 文件包含以下代码:

jQuery(document).ready(function($) {
$('#fieldName1').datepicker({
autoclose: true
});
});

有谁知道如何修改这段代码,以便日期选择器可以在同一表单的多个字段中运行,例如 fieldName2 和 fieldName3 以及 fieldName1?

我提前感谢您的努力。

最佳答案

不要使用 id 属性,而是分配一个有意义的 class 例如datepicker 到你想要日期选择器的元素。然后更新您的 javascript 以使用该类选择器。

例子:

<!-- HTML -->
<input type="text" id="fieldName1" class="datepicker" />
<input type="text" id="fieldName2" class="datepicker" />

// jQuery
jQuery(document).ready(function($) {
$('.datepicker').datepicker({
autoclose: true
});
});

更新:

如果您不想使用类选择器并且想使用多个 id,那么您可以执行如下操作:

<!-- HTML -->
<input type="text" id="fieldName1" />
<input type="text" id="fieldName2" />

// jQuery
jQuery(document).ready(function($) {
$("#fieldName1, #fieldName2").each(function() {
$(this).datepicker({
autoclose: true
});
});
});

关于javascript - 日期选择器 JS : how to have it work on multiple form fields,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18326842/

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