滚动动画 JQuery UI
我正在使用 JQuery UI 在我的 网页 中添加日历,我以前经常
window.location.href
去 将锚点单击日历中的日期
onSelect
使用JQuery UI 日期选择器事件 。 任何人都可以建议在 onSelect 事件中使用 JQuery 如何平滑滚动? js代码是这样的:
<script type="text/javascript">
$(function() {
var events = [
{ Title: "#DETAILS", Date: new Date("09/13/2011") },
{ Title: "Dinner", Date: new Date("09/25/2011") },
{ Title: "Meeting with manager", Date: new Date("10/01/2011") }
];
$("#datepicker").datepicker({
beforeShowDay: function(date) {
var result = [true, '', null];
var matching = $.grep(events, function(event) {
return event.Date.valueOf() === date.valueOf();
});
if (matching.length) {
result = [true, 'highlight', null];
}
return result;
},
onSelect: function(date) {
window.location.href = "#"+date;
}
});
});
</script>
I'm using JQuery UI to add a calendar in my web page and I used
window.location.href
to go to a anchor clicking on a date in the calendar with the
onSelect
event of JQuery UI date picker.
Anyone can suggest how to smooth scrolling with JQuery in the onSelect event?
The js code is this:
<script type="text/javascript">
$(function() {
var events = [
{ Title: "#DETAILS", Date: new Date("09/13/2011") },
{ Title: "Dinner", Date: new Date("09/25/2011") },
{ Title: "Meeting with manager", Date: new Date("10/01/2011") }
];
$("#datepicker").datepicker({
beforeShowDay: function(date) {
var result = [true, '', null];
var matching = $.grep(events, function(event) {
return event.Date.valueOf() === date.valueOf();
});
if (matching.length) {
result = [true, 'highlight', null];
}
return result;
},
onSelect: function(date) {
window.location.href = "#"+date;
}
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许使用像 这个 这样的 jQuery 插件?
Maybe using a jQuery plugin like this one?