如何在Windows小工具中使用jQuery .get()

我试图从一个网页的数据到我的侧边栏小工具通过:

$.get("http://localhost/index.php", function(data) { $("#result").html("Data Loaded: " + data); }); 

当我通过我的Apachenetworking服务器查看它时,它可以工作。
在小工具中使用此代码,它不会。

有没有简单的从网页获取数据到Windows小工具的方法?

问候 – lugro(抱歉我的英文不好)

系统:Windows 7 jQuery v1.5.2

是! 你必须设置这个属性:

 jQuery.support.cors = true; 

它与Win Vista / 7的安全性有关…在Vista中,IE7无法从PC和Web一起打开文件。 尝试降低您的安全性。 Jara001

编辑:我也试图想出解决方案。 如果我找到了,我会发布它。