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


8

是否有可能或如何做-拥有书签(bookmarklet?),当单击该书签将打开新页面时,该书签将具有基于当前日期计算的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

无法想出一种解决方案,但是,是的,JavaScript小书签应该可以做到这一点。
L2G

Answers:


5

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

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");

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.