在 Internet Explorer 8 上使用原型请求表单时出现问题
我试图在 ie 8 上使用原型 1.6.1 发出请求,以下代码适用于 Firefox:
var myForm = document.forms[0];
myForm.request({
onSuccess:
function(transport) {
var url = getPath() + nomeAcao+'?modulo='+modulo;
window.location = url;
}
});
调试时,我在“myForm.request”行上收到错误,它说我无法在 上调用此方法这个物体。有人知道如何修复它吗?
I'm trying to make a request using prototype 1.6.1 on ie 8, the following code works on Firefox:
var myForm = document.forms[0];
myForm.request({
onSuccess:
function(transport) {
var url = getPath() + nomeAcao+'?modulo='+modulo;
window.location = url;
}
});
When debugging, i get an error on the "myForm.request" line, it says i can't call this method on this object. Anyone knows how to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
而不是
尝试
instead of
try