Javascript 调用$.get函数时,JQuery中出现无效标签错误

Javascript 调用$.get函数时,JQuery中出现无效标签错误,javascript,jquery,xmlhttprequest,Javascript,Jquery,Xmlhttprequest,嗨,我收到无效的标签错误nmy代码 <!DOCTYPE html> <html> <head> <title>Radio Group Example</title> <link rel="stylesheet" type="text/css" href="../styles/core.css"/> <style type="text/css"> #result tt {

嗨,我收到无效的标签错误nmy代码

<!DOCTYPE html>
<html>
  <head>
    <title>Radio Group Example</title>
    <link rel="stylesheet" type="text/css" href="../styles/core.css"/>
    <style type="text/css">
      #result tt {
        color: maroon;
        font-size: 1.1em;
      }
      form>div {
        margin-top: 0.9em;
      }
    </style>
    <script type="text/javascript" src="../scripts/jquery-1.4.js"></script>
    <script type="text/javascript">

      $.get('http://www.cloudspokes.com/challenges/1548.json', function(data) {
            alert(data); //uncomment this for debug

        },'jsonp');
    </script>
  </head>
  <body>
<div id='helloWorld'>Hello WOrld</div>

  </body>
</html>

无线电组示例
#结果tt{
颜色:栗色;
字体大小:1.1米;
}
表格>分区{
边缘顶部:0.9em;
}
$.get('http://www.cloudspokes.com/challenges/1548.json,函数(数据){
警报(数据);//取消对此的注释以进行调试
}"jsonp",;
你好,世界
我不熟悉jquery.search,但无法解决此错误。 当我在浏览器中调用这个url时,它会给我一个json对象。 任何人都可以帮助解决此错误吗?

该策略允许在源于同一站点的页面上运行的脚本访问彼此的方法和属性,而不受特定限制,但阻止跨不同站点的页面访问大多数方法和属性


API支持jsonp吗?必须这样才能工作。还要阅读jQuery站点上的jsonp。