Embed player in web page embed element autostart false invalid

Embed player in web page embed element autostart false invalid
Recently, I encountered the need to embed a player in a web page to play sound files at work. Finally, I used the embed element code as follows:

Copy code
The code is as follows:

<embed src='1093.swf' autostart='false' hidden='true' loop='false' ></embed>

To prevent it from making a sound when the page is first loaded, set the autostart attribute to false. If you want to play the sound, call the play method of the embed element to play the sound.

It worked at first, but after a while, I found that the autostart attribute of the embed element was invalid. Even if it was set to false, it would still play automatically once when the page was loaded. I searched for a long time and finally found the answer through Google. Adding the following code can solve the problem

Copy code
The code is as follows:

<embed id="emswf" src="1093.swf" play="false" flashvars="autoplay=false&play=false" menu="false" hidden="true" loop="false"></embed>

<<:  Website Standard Development Flowchart

>>:  Detailed explanation of the 4 codes that turn the website black, white and gray

Recommend

In-depth explanation of various binary object relationships in JavaScript

Table of contents Preface Relationships between v...

Detailed explanation of component communication in react

Table of contents Parent component communicates w...

The easiest way to install MySQL 5.7.20 using yum in CentOS 7

The default database of CentOS7 is mariadb, but m...

JavaScript realizes the effect of mobile modal box

This article example shares the specific code of ...

Detailed explanation of MySQL execution plan

The EXPLAIN statement provides information about ...

Example of how to set WordPress pseudo-static in Nginx

Quoting Baidu's explanation of pseudo-static:...

A brief discussion on React Component life cycle functions

What are the lifecycle functions of React compone...

MySQL database operations (create, select, delete)

MySQL Create Database After logging into the MySQ...

JavaScript microtasks and macrotasks explained

Preface: js is a single-threaded language, so it ...

10 very good CSS skills collection and sharing

Here, clever use of CSS techniques allows you to g...

4 Ways to Quickly Teach Yourself Linux Commands

If you want to become a Linux master, then master...

Detailed tutorial for installing mysql5.7.21 under Windows

This article shares the installation tutorial of ...

Some thoughts and experience sharing on web page (website) design and production

First, before posting! Thanks again to I Want to S...

Mini Program implements custom multi-level single-select and multiple-select

This article shares the specific code for impleme...