0
當我包含knockout.js庫時,所有選擇的字段都消失。有沒有辦法讓選擇字段忽略knockout.js?使用Knockout.js選擇字段
它不僅影響我的下拉,而且還影響日期選擇器......即,我有以下代碼:
<center>
<%= f.text_field :firstdate, :style=>"width:150px;" %>
-
<%= f.text_field :seconddate, :style=>"width:150px;" %>
<script>
$(function() {
$("#post_firstdate").datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-112:+5"
});
$("#post_seconddate").datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-112:+5"
});
});
</script>
</center>
雖然我可以選擇在數據選擇器的日期,一般月份和年份字段的下拉菜單,以及。現在他們消失了。
有沒有關於如何讓某些領域忽略淘汰賽的建議?
謝謝。