Adobe Flash Player 11.2 will be the last version to support the Linux platform.Adobe continues to provide only security updates to Flash Player 11.2 for Linux and does not provide version updates.It's also easy to add Flash Player support for Firefox on Linux.Download the tar.gz package Adobe provides for Linux:https://get.adobe.com/cn/flashplayer/Copy or soft-link the libflashplayer.so in the compressed package to/usr/lib/mozilla/plugins/. Because Ch
1. Use your local old version of Firefox to access http://www.firefox.com.cn and download the Linux version of Firefox.2. Enter the directory where the download file (firefox-latest-x86_64.tar.bz2) is stored.# cd/root/Download3. Unzip the firefox-latest-x86_64.tar.bz2 in this directory.After decompression will generate
In the speed of finding a lot of ways, and finally solved the
In fact the easiest way is to add You can also use program control
Copy Code code as follows:
Header ("Cache-control:no-cache,no-store,must-revalidate");
Header ("Pragma:no-cache");
Header ("expires:0");
?>
If in
Here's a specific analysis for you.:
two important differences between Firefox and IE browser caching
When you create a Web service, there are usua
Here are some of the things I've encountered in development:
1, delete a row in the table dynamically.
Table: Represents a Table object.
K: Indicates line number
Table.rows[k].removenode (TRUE); Firefox execution failed, ie executed successfully
IE and Firefox compatibility
Table.deleterow (k);
2, custom attributes for HTML tags.
Inputelement: Represents a FORM element.
PropertyName: Represents a p
1. Firefox cannot support innertext.Firefox supports innerhtml but does not support innertext. It supports textcontent to implement innertext, but by default, redundant spaces are retained. If textcontent is not required, you can use innerhtml instead if the string does not contain HTML code.
2. Prohibit the selection of webpage content:JS: obj. onselectstart = function () {return false;} is generally used in IE ;}
Compatibility between IE and Firefox in Javascript
1.doc ument. formname. Item ("itemname ")Note:In IE, you can use document. formname. Item ("itemname") or document. formname. elements ["elementname"];In Firefox, only document. formname. elements ["elementname"] can be used.Solution:Use document. formname. elements ["elementname"].Text1:Document. formname. Item ("itemname ")Document. formname. ele
1 Testing the Firefox OS (B2G) system on Ubuntu
The
Firefox OS, project codenamed "Boot 2 Gecko", is an open, fully web-based, smartphone operating system developed by Mozilla. The underlying Firefox OS is Linux, an open web technology, and not a platform-specific native API to write applications with HTML5. The daily build of the
1.firefox cannot support innertext.Firefox supports innerHTML but does not support innertext, it supports textcontent to implement innertext, but it also retains the extra space by default. If you do not need to textcontent, if the string contains no HTML code can also be replaced with innerHTML.2. Prohibit the selection of Web content:In IE, generally with js:obj.onselectstart=function () {return false;}and Firef
Firefox is the main web browser in Ubuntu. It is pre-installed in the system and added to the default Ubuntu software library to get the latest version of Firefox for automatic updates.
Most users do not need to worry about installing or using Firefox, because there is no problem, it has been installed and can be used. You always get the version of
First step: Download the latest installation package to the official website[Click to download] Get firefox-latest.tar.bz2Step Two: Unpack the installation package$ tar jxfv firefox-latest.tar.bz2Unzip the Firefox directoryStep Three: Replace the original Firefox$ cd/usr/lib$ sudo mv
ArticleDirectory
Option 1: IE8 and Firefox using the same style, IE6 and IE7 using another
Option 2: IE8 and Firefox using the same style, IE6 and IE7 using their own styles different to IE8 and Firefox.
Option 3: similar to above, but if you need to target IE8 and Firefox separately.
Option 4: simila
When it comes to everyday mainstream browsers, you have to mention the Mozilla Firefox browser. Unconsciously, this Firefox has been in the Firefox 30 milestone from the earliest Firefox 3.0. Because Firefox defaults to the Flash plugin to join the auto play whitelist. This
1. document. form. item Problems(1) existing problems:Many statements such as document. formName. item ("itemName") exist in the existing code and cannot be run in Firefox.(2) solution:Use document. formName. elements ["elementName"](3) OthersSee 2
2. Collection class Object Problems(1) existing problems:In the existing Code, many collection class objects are used (), which is acceptable to IE and cannot be used by
To write JavaScript code that is compatible with mainstream browsers, you need to pay attention to their differences. The general Dom that IE and FF comprehensively consider is below!
1.doc ument. formname. Item ("itemname ")
Description: You can use document. formname. item ("itemname") or document. formname. elements ["elementname"]; In Firefox, only document. formname. elements ["elementname"].Solution: Use document. formname. elements ["elementnam
1. It is found that the id attribute of the input label in IE is the same as the name attribute by default. Firefox must explicitly write the id attribute name; otherwise, the id attribute cannot be used.
For example, The following code in IE can be executed, but not in Firefox:
The following code must be changed:
Reprinted as follows:
1. document. formName. item ("itemName ")
Note: in IE, you can use do
Frequently asked questions in JavaScript1. Collection Class object Problem
Many collection class objects in existing code use (), IE can accept, Firefox can not.
WORKAROUND: Use [] as the subscript operation instead. For example: Document.forms ("FormName") instead
JS code document.forms["FormName"]; Another example: Document.getelementsbyname ("InputName") (1); Change to Document.getelementsbyname ("InputName") [1];
document.forms["FormName"];
Anoth
1.firefox cannot support the innertext.Firefox supports innerHTML but does not support innertext, it supports textcontent to achieve innertext, but by default the extra space is retained. If you don't use textcontent, you can replace it with innerHTML if the string contains no HTML code.
2. Prohibit selection of Web page content:
In IE, js:obj.onselectstart=function () {return false;}
and Firefox uses Cs
1. Differences between IE and non-ie browsers# Tip {Background: Blue;/* Non-ie background colors */Background: Red \ 9;/* IE6, IE7, and IE8 background colors */Background-color: Red \ 0;/* Internet Explorer 8/9 */Background-color: Blue \ 9 \ 0;/* ie 9 */}
2. Differences between IE6, IE7, IE8, and FF
[Difference]: "\ 9", "*", "_", and "\ 0 」[Example ]:# Tip {Background: Blue;/* the Firefox background turns blue */Background-color: Red \ 0;/* ie 8/9 * /
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.