Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

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".

Tìm hiểu thêm

form not recognized, name or id attribute not recognized. Works in IE

  • 4 trả lời
  • 5 gặp vấn đề này
  • 5 lượt xem
  • Trả lời mới nhất được viết bởi foxbt4

more options

HTML tag:

<form name="navform" action="JavaScript:formHandler();">


JS Function definition:

  function formHandler()
  {
	var URL = navform.site.options[navform.site.selectedIndex].value;
	window.top.location.href = URL;
   }


Firefox 3.3.13 errors out on the JS function. Error console reports that navform is not defined. However, previous version of Firefox executed form. IE 7, IE 8 (current release level) execute form function without any errors.

HTML tag: <pre><nowiki><form name="navform" action="JavaScript:formHandler();"> </nowiki></pre> JS Function definition: <pre><nowiki> function formHandler() { var URL = navform.site.options[navform.site.selectedIndex].value; window.top.location.href = URL; } </nowiki></pre> Firefox 3.3.13 errors out on the JS function. Error console reports that navform is not defined. However, previous version of Firefox executed form. IE 7, IE 8 (current release level) execute form function without any errors.

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

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

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.

more options

Try document.forms["navform"]

more options

Thanks for making time to reply--but that does not conform to the current level of JS syntax--JS error on page load.

more options

Thank you for the suggestion. I may re-write navigation script in future. For now, IE default browser--problem solved.