【发布时间】:2013-02-18 11:30:29
【问题描述】:
最近几天我一直在努力让这件事发挥作用。 有两个日期选择器,很像开始和结束日期演示,但不能让它们工作。此代码适用于页面正文,但不适用于我想要搜索栏的标题。
<script type="text/javascript">
$(function() {
$( "#from" ).datepicker({
dateFormat: "dd-mm-yy",
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
dateFormat: "dd-mm-yy",
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
<form method="post" name="top_search_form" action="<?php bloginfo('wpurl');?>/?page_id=13" style="z-index:inherit">
<input type="hidden" name="a" value="dosearch"/>
<input id="top_search_input" placeholder="Procurar..." style="z-index:inherit" type="text" name="keywordphrase" value=""/>
<input type="text" id="from" name="searchstartdate" placeholder="Partida" class="from" style="z-index:inherit"/>
<input type="text" id="to" name="searchenddate" placeholder="Chegada" class="to" style="z-index:inherit"/>
<input id="top_search_button" type="submit" value="Search" style="z-index:inherit">
</form>
谁能帮帮我?
【问题讨论】:
-
怎么不工作?发生什么了 ?你遇到了什么错误?
-
你是否有相同的表格,在两个地方都复制了相同的 ID?
-
它给出了 id 或类冲突的错误,所以请查看
-
是的,我有一个具有相同 ID 的登录页面,它在那里工作得很好。但是,在其他地方它不起作用。当我说它不起作用时,它根本不会弹出
标签: php jquery css wordpress datepicker