Ajax无法在Chrome扩展程序中使用?

时间:2012-07-09 10:22:42

标签: jquery xml ajax google-chrome google-chrome-extension

我正在尝试编写示例扩展,这是它应该如何工作的。我的扩展程序有一个选项页面,当人们点击登录按钮时,它会向test.php发送一个ajax请求并获取提醒用户的信息。但它不起作用,我不知道为什么。 这是我的文件夹结构

chrome 

  \ manifest.json
  \ options.html
  \ options.js
  \ test.php
options.html中的

<div class="login-button" id="login-button">Sign in</div>

在options.js

 $(document).ready(function(){  
    alert('hello');
    $('#login-button').click(function() {
        loginAjax();
    });
 })
 function loginAjax() {
    $.ajax({
       url: 'test.php',
       data: "",
       dataType: 'json',
       success: function(data) {
          alert(data);
       }
    });
 }

在Ajax URL中,我尝试设置绝对路径,但它不起作用。

提前致谢。

编辑:它已经有效了,我不知道:-D

1 个答案:

答案 0 :(得分:0)

你必须使用Cross-Origin XMLHttpRequest而不是jquery 查看更多http://code.google.com/chrome/extensions/xhr.html