有自动 jQuery 插件更新程序吗?

发布于 2024-07-23 04:52:23 字数 85 浏览 11 评论 0原文

是否有某种实用程序可以检查我的 jQuery 插件并查看它们是否是最新版本? 我知道没有一种简单的方法可以自动检查版本号; 但我想知道是否有人看过这个。

Is there some sort of utility available that will check my jQuery plugins and see if they are the latest version? I understand that there is not an easy way to check the version numbers automatically; but I wonder if anyone has taken a look at this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

回心转意 2024-07-30 04:52:23

您始终可以订阅 RSS 提要或点击主页并解析此内容
以编程方式,使用 DOM 解析器(如果您喜欢痛苦,则使用正则表达式):

<p class="jq-version"><strong>Current Release:</strong> v.1.3.2</p>

也就是说,我认为最好的解决方案是每隔几周左右手动检查一次站点。 如果您自动更新生产 jQuery 库,您几乎肯定会面临至少一场灾难。

另外,您可以像这样使用 jQuery 来完成此操作(前提是您通过域上的代理获取 jquery 主页):

$('#someDiv').load('proxyOnMyDomain.php?get=www.jquery.com .jq-version');

You could always subscribe to the RSS feed or hit the main page and parse out this
bit programmatically, using a DOM parser (or regex if you prefer pain):

<p class="jq-version"><strong>Current Release:</strong> v.1.3.2</p>

That said, I think the best solution is to manually check the site every couple of weeks or so. If you automatically update your production jQuery libraries, you will almost certainly face at least one catastrophe.

Also, you could do it with jQuery like so (provided you get jquery homepage via a proxy on your domain):

$('#someDiv').load('proxyOnMyDomain.php?get=www.jquery.com .jq-version');
辞别 2024-07-30 04:52:23

也许 Yahoo Pipes 适合您...它可以将 25 个插件源合并为一个。 如果没有,还有许多其他提要混搭服务。

Maybe Yahoo Pipes is right for you... it could combine the 25 plugin feeds into one. If not, there are many other feed mashup services out there.

心房的律动 2024-07-30 04:52:23

您想解决什么现实问题?

也许 Google AJAX Libraries API 可以在某种程度上为您提供帮助。

What real-world problem are you trying to solve?

Perhaps Google AJAX Libraries API can help you in some way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文