我有這樣的數據字段輸入禁用向上和向下箭頭
而且它也確實表現出數據選擇器插件至極正常工作與鍵盤。
但我想禁用向上和向下的箭頭。你能指導我如何?
還需要當日期提交點擊它打開日期選擇器或當用戶點擊日曆圖標 謝謝。
代碼:
<div class="col-sm-10">
<input type="date"ng-model="date" class="form-control" placeholder="date" style="width:180px" id="date" ng-required="true">
<span class="input-group-addon" style="width:auto">
<span class="glyphicon-calendar glyphicon"></span>
</span>
</div>
<div class="col-sm-10">
<input type="date"ng-model="client.dateofbirth" class="form-control" placeholder="Data de nascimento" style="width:180px" id="dateofbirth" ng-required="true">
<span class="input-group-addon" style="width:auto">
<span class="glyphicon-calendar glyphicon"></span>
</span>
</div>
日曆圖標也顯示出我倒不是在正確的地方... 我希望當我在文本框中單擊它打開日曆。
//不工作
$('#date').datepicker(
{
allowInputToggle: true
});
您使用的HTML輸入日期類型?如果是這樣,請看看它如何使用其他瀏覽器。我通常傾向於使用UI庫進行日期選擇,以確保不同瀏覽器之間的UI一致。 – Nick
發佈你的HTML和JavaScript,然後我們可以幫助你更好。 – Tapas
我從http://bootstrap-datepicker.readthedocs.io/en/latest/ 一個datepicker然而,當我點擊 他們說使用此代碼文本框或者它應該打開日期選擇器的圖標,但它不工作('#dateofbirth')。datepicker( { allowInputToggle:true }); – user613507