如何在 Firefox 中创建动态书签?

如何在 Firefox 中创建动态书签?

是否可能,或者如何做到这一点 - 使用书签(小书签?),当单击时会打开新页面,并且会根据当前日期计算出 2 个参数?

例如今天会打开:

http://some.site/page?from=2011-11-01&to=2011-11-28

但一周后

http://some.site/page?from=2011-12-01&to=2011-12-05

答案1

感谢有机会学习一些东西!以下是我想到的。在位置字段中创建带有以下内容的书签。

javascript:function z() { var d = new Date(); ym = d.getFullYear() + '-' + (d.getMonth()+1) + '-'; return 'http://some.site/page?from='+ym+'01&to='+ym+d.getDate(); } window.open(z(),"_blank");

看起来您想要的是自当前月份的第一天到当前日期,对吗?

相关内容