請問我有一個Calendar點擊text box後
彈出的日曆上面當前月份及選擇日期的色塊
不能顯示在正確的位置上,容易造成點錯
該如何校正此問題
https://imgur.com/gallery/8QGESV3
https://imgur.com/gallery/NHapoZW
假設日期選擇器的元素的 id 為 "datepicker"
使用 JavaScript 或 jQuery 修改日期選擇器位置:
JavaScript:
document.getElementById("datepicker").style.top = "50px";
document.getElementById("datepicker").style.left = "100px";
jQuery:
$("#datepicker").css({top: "50px", left: "100px"});