search
HomeWeb Front-endHTML TutorialFlash embedded in html Solution for embedding Flash files in html web page code (Part 1) _HTML/Xhtml_Web page production

It is the custom of the Chinese people to celebrate the New Year before the fifteenth day of the first lunar month. Here I would like to wish your friends in the garden a happy new year.
In the past few days, the company's website homepage needs to be revised. After the company's "staff reduction" at the end of last year, one person has to do the work of multiple people, and suddenly he feels that the burden is heavy. No, this is not something within the scope of my work. Unfortunately, I have been involved in it. Fortunately among the misfortunes, the task assigned to me by BOSS this time is exactly the front-end development task I have always been passionate about. I have been engaged in the development of back-end management programs for the company's website before, mostly processing business logic on the server side. I have never had the opportunity to put my skills into use in front-end development, which I am passionate about. Practice is the best way to test true knowledge. Solving the practical tasks assigned to me is a rare test. I learned a lot of scattered knowledge through books and various materials, but did not get the opportunity to combine them together. Comprehensive test”, haha. There are so many ink stains on the front, which are caused by suppressing them for a long time, haha.

Let me first describe the task requirements: There is a JPG picture composed of five balls on the homepage of the company's website. It is used for navigation. Clicking on the text on each ball will open the corresponding information. On the secondary page, there is an almost identical Flash version corresponding to the image. One of the tasks assigned to me by my boss is: when the client browser has a Flash file player installed, the Flash version of the navigation is displayed, and vice versa, the JPG image navigation is displayed. After getting the task, think about it for a moment. As a front-end development, of course you have to consider browser compatibility issues. The best way to bridge the gap between browsers is to use one or more mature JavaScript frameworks. Fortunately, there happens to be one A very mature and sophisticated JS framework exists, named: SWFObject.js.

The first time I came into contact with SWFObject.js was its V1.5, and this time I used V2.1 to solve the problem. There are still some differences in the use of the two. Overall, I feel that V2.1 is a big leap forward compared to V1.5. V2.1 is more in line with the object-oriented JavaScript programming style in terms of the source code of the framework and the usage process.

I will take you to experience this "tortuous" journey from the perspective of a researcher who has just explored JavaScript. Whether you are a novice like me, or you are already proficient in writing various JS As a veteran of coding, please be merciful and hope that everyone can point out the short-sightedness in my thinking and the errors in my writing in a civilized manner.

The following code is an example of usage that I adapted from a documentation of SWFObject V1.5 (if you want to learn more about V1.5, please click this link):

Copy code
The code is as follows:


DEMO> ;







< ;/form>



If you want to briefly understand the meaning of each parameter in SWFObject(), please refer to the documentation, which I won’t repeat here.
I strongly recommend that you copy the code in "V1.5 Usage Example" into Notepad, and click SWFObject V1.5 to download the source file of the required V1.5 framework. After decompressing, find swfobject_source.js (uncompressed version, the file name of the compressed version is swfobject.js) file, rename the notepad file to demo.html and place it in the same folder as the swfobject_source.js file. Then please install it in IE6/IE7 and fox respectively. Run it in any browser such as , opera, safari, navigator, chrome, etc. and see what the result is.
If you follow my suggestions, you should find that this picture is displayed on the page instead of a Flash file. Why is this? If you happen to have the IE series installed on your PC, please follow the steps below: Click the IE browser icon, find the "Tools" menu on the toolbar, select "Internet Options", and click "Advanced" in the window that opens. , find the "Disable Script Debugging (Internet Explorer)" option, uncheck the box in front of it, and click "OK". After completing the above operations, please browse the demo.html page again. Will you find an error prompt box popping up with the following error message: "A runtime error has occurred. Do you need to debug? Line: 117 Error: 'null' is Empty or not an object. ”

If you happen to be using the VS 2003/2005/2008 series of IDEs for development, then I don’t need to teach you how to debug JavaScript code. You can var so = above... Open a debugger, and then debug and trace it. Keep pressing F11 until you trace the inside of the swfobject_source.js file through the so.write() method. You will find that the actual parameter "flashcontent" passed to so.write(elementId) is in the document. The value of .getElementById("flashcontent") is always null. Why is this? Found the problem?

Haha, if you are still a newbie who doesn’t know much about JavaScript, you will be as confused as I was at that time. After many times of debugging and modifying the code, I firmly believe that what I wrote There is no error in the JS code itself. Is there a problem with the externally loaded swfobject_source.js file? If there is a problem, where is the problem? At that time, I was looking for a solution to the error, and I modified the above code into the following example:

Copy code
Code As follows:


DEMO


> ;






If you execute the above code, you will find that this picture is still displayed on the page, and a warning box containing "The element does not exist" will pop up. It seems that the problem is not caused by external loading. swfobject_source.js file.

If you see this, you will definitely experience my annoyance at that time. After taking a short rest, I cleared my mind and looked back, only to find that the essence of the problem lies in "HTML DOM loading". In a page, JS scripts in the head of the page (that is, between ) and JS files loaded from external files will be executed before the HTML DOM is actually constructed. Therefore, the scripts executed in these two places cannot access the DOM that does not yet exist. You should know the real reason, which is that during the execution of the JS code in Example 1.1, the
...
that has not yet been constructed is accessed.

Okay, after seeing this, there is one last step that you need to do yourself, which is to simply modify the above code and adopt an inelegant method to solve it
About "HTML DOM" "Loading" problem, which method is it? I think you may have guessed it. Yes, it is exactly the following method:

Copy code
The code is as follows:


DEMO

_fcksavedurl=""swfobject_source.js">"





Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version