2007-05-08

Firefox 中 xmlhttprequest 跨域访问

今天要写一个小爬虫,用xmlhttprequest批量抓取一个图片集的链接,不过firefox有安全限制,对跨域访问有限制,需要权限提升。

记得在《Ajax in Action》曾看到过,现在忘了,在网上竟然查了半天才找到,(原以为Google第一个就是呢)

只需在xmlhttprequest作用域内加入

netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");

即可。

参考:
http://www.captain.at/howto-ajax-permission-denied-xmlhttprequest.php

No comments: