我正在使用bootstrap的日期选择器
<input type="text" style="height: 30px ! important;" value="05/16/2014" onclick="$(this).datepicker();" name="tododate" placeholder="Date" id="tododate1" size="16" class="m-wrap m-ctrl-medium date-picker hasDatepicker">
点击按钮上的输入显示
答案 0 :(得分:0)
这可能与您的javascript文件冲突。
试试这个:
<script>
var $j = jQuery.noConflict();
</script>
//put the above just before the input below
<input type="text" style="height: 30px ! important;" value="05/16/2014" onclick="$j(this).datepicker();" name="tododate" placeholder="Date" id="tododate1" size="16" class="m-wrap m-ctrl-medium date-picker hasDatepicker">
注意onclick="$j(this).datepicker();"
($ j)
有关jQuery.noConflict();
http://learn.jquery.com/using-jquery-core/avoid-conflicts-other-libraries/的更多信息
希望这有帮助!