Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaScriptのみの例を使用して、特定の日付に日数を追加したい:
textbox1.text=10-04-2013 textbox2.text=30 textbox3.text=10-05-2013
これを使用できます
var yourDate= new Date(); var numberOfDaysToAdd = 6; someDate.setDate(yourDate.getDate() + numberOfDaysToAdd);