带有日历控件的 javascript onchange 事件
当我使用日历控件更改日期时,我试图获取 JavaScript 事件来重新加载页面,但页面不会重新加载。知道如何做到这一点吗?
这就是我现在所拥有的
<input type="text" name="start_date" onFocus="showCalendarControl(this);" value="#FORM.start_date#" onchange="changeDateReload(this.value);" />
function changeDateReload(newDate){
<cfoutput>
window.location("editBooking.cfm?booking_id='#URL.booking_id#'&req_mon={ts ''newDate' 00:00:00'}&req_time='#URL.req_time#'&req_room_id='#URL.req_room_id#'");
</cfoutput>
}
I'm trying to get a javascript event to reload a page when I change a date using calendar control, but the page won't reload. Any idea how to do this?
this is what i have right now
<input type="text" name="start_date" onFocus="showCalendarControl(this);" value="#FORM.start_date#" onchange="changeDateReload(this.value);" />
function changeDateReload(newDate){
<cfoutput>
window.location("editBooking.cfm?booking_id='#URL.booking_id#'&req_mon={ts ''newDate' 00:00:00'}&req_time='#URL.req_time#'&req_room_id='#URL.req_room_id#'");
</cfoutput>
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
window.location
不是一个函数,而是一个对象。使用(请参阅 MDC 和 W3C 规范)
window.location
isn't a function, but an object. Use(See MDC and W3C spec)
我不知道脚本代码中的“
”标记是什么意思。像这样编写脚本函数:
i don't know whats the "
<cfoutput>
" tag means in your script code.Write the script function like that: