以下代码在IE8和Safari4中按预期工作,但在Firefox3.6和Chrome中没有。所有浏览器都在Windows上。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function() { $('#tabs').tabs(); });
</script>
</head>
<body>
<div id="tabs">
<ul>
<li><a href="http://www.google.com/">Google</a></li>
<li><a href="http://www.msn.com/">MSN</a></li>
</ul>
</div>
</body>
</html>
默认情况下Firefox和Chrome不支持跨域AJAX,对吧?有没有简单的方法可以在Firefox和Chrome中启用跨域AJAX?
答案 0 :(得分:0)
XSS(跨站点脚本)是一个很大的坏处。除非你正在谈论对另一方进行安全修改以使其支持它,否则我无法相信它们会默认。
修改强>
我只是注意到你在那里的代码没有做任何XSS。你从中获得了什么样的错误(如果有的话)?
答案 1 :(得分:0)
答案 2 :(得分:0)
使用JSONP(基本上,您插入<script src="otherdomain.tld/....?callback=your_function"/>
(jQuery自动执行)。