Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

"TypeError: XMLHttpRequest.Open is not a function" error message

more options

I have the following javascript code:

var XmlHttp = new XMLHttpRequest();
XmlHttp.Open("GET", "http://localhost/MenuOptions.aspx?ca_key=1631&isRollup=1", false);

In Firefox (version 22) the XmlHttp.Open() throws an error "TypeError: XmlHttp.Open is not a function"

I have the following javascript code: <pre><nowiki>var XmlHttp = new XMLHttpRequest(); XmlHttp.Open("GET", "http://localhost/MenuOptions.aspx?ca_key=1631&isRollup=1", false);</nowiki></pre> In Firefox (version 22) the XmlHttp.Open() throws an error "TypeError: XmlHttp.Open is not a function"

Được chỉnh sửa bởi cor-el vào

Giải pháp được chọn

Tất cả các câu trả lời (5)

more options

is this a script error or stopage, does safe mode fix the problem

more options

Safe mode does not fix this problem.

more options

Giải pháp được chọn

It seems to be "open" with a lowercase "o":

See:

more options

I finally figured it out. The functions are case sensitive. So my XmlHttp.Open(<...>) was throwing an exception that Open is not a function. The same happened to me later on with XmlHttp.Send(null). It also said that Send is not a function but when I changed them to XmlHttp.open(<...>) and XmlHttp.send(null) then everything worked fine. So both functions need to start with a lower case letter.

more options

Hi bbatl, as a general rule, JavaScript objects/functions and DOM objects/properties/methods are case sensitive. This may not apply to some Microsoft technologies which are more forgiving.