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

Dropdown menu not working only on firefox http://www.meichipeng.com/portfolio/

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

more options

I'm trying to find out why the drop down menu on the left hand side not working at all only on FF, working fine on other browsers. Our website is very simple and straight forward coding. Here are our problem pages on the site http://www.meichipeng.com/portfolio/ http://www.meichipeng.com/press/

Thank you

I'm trying to find out why the drop down menu on the left hand side not working at all only on FF, working fine on other browsers. Our website is very simple and straight forward coding. Here are our problem pages on the site http://www.meichipeng.com/portfolio/ http://www.meichipeng.com/press/ Thank you

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

You can try something like this (not tested).

init: function(options) { this.el = options.el; $(this.el).find("span").click(function(event) { Treenav.toggleMenu(event); }); this.restoreMenuState(); }, 

toggleMenu: function(event) {
 if (typeof event == 'undefined') { event = window.event; }
 var _el = event.target||event.srcElement;  //console.log(_el); 

 $(_el).parent().children("ul").slideDown(300);
 $(_el).parent().siblings("li").children("ul").slideUp(300); 
}, 
Đọc câu trả lời này trong ngữ cảnh 👍 2

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

more options

What programming language was used to make this website?

Firefox has some known HTML5 compatibility issues. If this website is in HTML5 format, then you may experience some issues running the site on Firefox.

more options

How can I find out which version of HTML we used? This website is about 3 years old and I just make some edition and maintain the site, not a programmer. Any suggestion to fix this issue why only happens on FF? Thank you

more options

In Firefox you need to pass the event as a parameter.
Firefox doesn't support window.event

Web Console (Firefox/Tools > Web Developer;Ctrl+Shift+K):

TypeError: window.event is undefined @ http://www.meichipeng.com/js/treenav.js:13
function(event){
if (typeof event == 'undefined') { event = window.event; }
var target = event.target||event.srcElement; 
 ...
}
more options

If you didn't program the website, you would need to contact the person/company that did. Since the website is so old, I doubt that it is an HTML5 page.

The page isn't labeled as an HTML5 page in the !DOCTYPE tag, but it could have been incorrectly labeled.

more options

Where should I specify that function in treenav.js? In init or in toggleMenu? Thank you.

init: function(options) { this.el = options.el; $(this.el).find("span").click(function() { Treenav.toggleMenu(); }); this.restoreMenuState(); },


toggleMenu: function() { _el = window.event.target; if (!_el) { _el = window.event.srcElement; } //console.log(_el); $(_el).parent().children("ul").slideDown(300); $(_el).parent().siblings("li").children("ul").slideUp(300); },

more options

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

You can try something like this (not tested).

init: function(options) { this.el = options.el; $(this.el).find("span").click(function(event) { Treenav.toggleMenu(event); }); this.restoreMenuState(); }, 

toggleMenu: function(event) {
 if (typeof event == 'undefined') { event = window.event; }
 var _el = event.target||event.srcElement;  //console.log(_el); 

 $(_el).parent().children("ul").slideDown(300);
 $(_el).parent().siblings("li").children("ul").slideUp(300); 
}, 
more options

That line is just working perfect! Thank you so much, you saved me. This forum is really great!