我如何使用他们的 class 然后是 id 访问日期选择器
How can i access the date picker with their class and then id
我正在使用 bootstrap 的三个日期选择器
它使用以下代码启动布局和插件
<script>
jQuery(document).ready(function() {
// initiate layout and plugins
$('.date-picker').datepicker({
rtl : Metronic.isRTL(),
autoclose : true
});
});
</script>
如何使用他们的 ID 访问日期选择器
因为我有一个带有 id 生日的日期选择器
我想在不影响其他日期选择器的情况下设置它的结束日期
生日日期选择器的代码是 foillows
<MyUI:datePicker id="birthDate" name="birthDate"
label="${message(code: 'BP.birthDate.label', default: 'Birth Date')}"
required="true"
value="${BP?.birthDate ? BPInstance?.birthDate?.format('yyyy-MM-dd') : new Date().format('yyyy-MM-dd')}"
labelCol="4" elementCol="8" />
请人帮忙
您只能使用
访问您的 "birthday" 字段
$('#birthDate').datepicker({ //...
其他日期选择器应保持不变。
如果您不想使用 ID,则必须使用类似的东西,但您必须知道 "birthDate"-Field 在哪个 "position" 上(检查 id是 birthDate)...我想你不会绕过使用 ID。
$('.date-picker').each(function(){
alert($(this).attr('id'));
});
我正在使用 bootstrap 的三个日期选择器 它使用以下代码启动布局和插件
<script>
jQuery(document).ready(function() {
// initiate layout and plugins
$('.date-picker').datepicker({
rtl : Metronic.isRTL(),
autoclose : true
});
});
</script>
如何使用他们的 ID 访问日期选择器 因为我有一个带有 id 生日的日期选择器 我想在不影响其他日期选择器的情况下设置它的结束日期 生日日期选择器的代码是 foillows
<MyUI:datePicker id="birthDate" name="birthDate"
label="${message(code: 'BP.birthDate.label', default: 'Birth Date')}"
required="true"
value="${BP?.birthDate ? BPInstance?.birthDate?.format('yyyy-MM-dd') : new Date().format('yyyy-MM-dd')}"
labelCol="4" elementCol="8" />
请人帮忙
您只能使用
访问您的 "birthday" 字段$('#birthDate').datepicker({ //...
其他日期选择器应保持不变。
如果您不想使用 ID,则必须使用类似的东西,但您必须知道 "birthDate"-Field 在哪个 "position" 上(检查 id是 birthDate)...我想你不会绕过使用 ID。
$('.date-picker').each(function(){
alert($(this).attr('id'));
});