我尝试使用Mozilla add on来创建登录表单。我需要使用ajax来查明用户名和密码是否正确。
我在附加内容中了解了Request方法,但我只需要在panel.html页面中获取信息。我通常在chrome扩展中使用XML HTTP REQUEST,但它在Mozilla中不起作用。 我已经尝试过了
var latestTweetRequest = Request({url: "http://somthing/login.phpusername="+username+"&password="+password,onComplete: function (response) {alert(response); }});
有可能吗?
答案 0 :(得分:1)
将一个login.js文件添加到html表单(必须是外部的),像往常一样从表单中获取信息并在该文件中创建XMLHTTPRequest,而不是在addon main.js中执行此操作