HTML5 Audio to control the pause and playback of music in the Js__oracle

Source: Internet
Author: User

The first contact HTML5, need to use music play Audio function, in how to control Audio through the onclick event playback and pause on a number of information, through the "HTML5 Learning Series Audio (1)" and "HTML5 audio/video tags, attributes, Methods, summary of Events Two blog learning, try to find the "HTML5 Learning Series Audio (1)" mentioned in the P.load ();p. Play () is invalidated in jquery, P.stop (); Then try the "HTML5 audio/video tags, attributes, methods, events summary" Given the Audio method and properties, in JS Play (), pause () two methods to control playback and pause, the following is jquery and JS code:


jquery Code:

$ (function () {
	
	$ (. stop). Click (function () {				
		
		audio.bind (' Audio ', Stop ());	
		
	});
		
	$ (". Play"). Click (function () {	
				
		audio.bind (' Audio ', Play ());	Invalid
		
	});


JS Code:

    <script>
		Function Change () {Play
			= document.getElementById ("audio"); 
			if (document.getElementById (' play '). classname== "Stop") {
				play.pause ();  
				document.getElementById (' Play '). Classname= "Play";
				} else{
					Play.play ();
					document.getElementById (' Play '). Classname= "Stop";
					}
	</script>


Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.