我想在Firefox中执行以下代码
Ext.Ajax.request({
url: "http://localhost:1979/geoserver/j_spring_security_check?",
method: "POST",
scriptTag: true,
params: {
username: username,
password: password
},
success: function () {
alert("ok");
}
});
由于某种原因,这段代码永远不会在 firefox 或 chrome 中执行(在 ie 中工作正常)
提前致谢