• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:音楽再生用jQueryプラグイン「jplayer」で自動再生しない方法)

音楽再生用jQueryプラグイン「jplayer」で自動再生しない方法

このQ&Aのポイント
  • 音楽再生用jQueryプラグイン「jplayer」で自動再生しない方法を紹介します。
  • jplayerを利用する際に自動再生を制御する方法について解説します。
  • JavaScriptの知識が不足していても安心して利用できる音楽再生制御の方法をご紹介します。

質問者が選んだベストアンサー

  • ベストアンサー
  • yyr446
  • ベストアンサー率65% (870/1330)
回答No.2

1行が長かったので、肝心の部分が...になってしまった。 Example #3:の例は↓です。 <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"> </script> <script type="text/javascript" src="js/jquery.jplayer.min.js"> </script> <script type="text/javascript"> $(function() { // executed when $(document).ready()   $("#jpId").jPlayer( {    ready: function () {     this.element.jPlayer("setFile",      "http://www.myDomain.com/mp3/elvis.mp3").jPlayer("stop");    },    swfPath: "jPlayer/js"   }); }); </script> </head> <body> <div id="jpId"></div> </body>

rinkie
質問者

お礼

ありがとうございます!助かりました。

すると、全ての回答が全文表示されます。

その他の回答 (1)

  • yyr446
  • ベストアンサー率65% (870/1330)
回答No.1

ドキュメント http://www.happyworm.com/jquery/jplayer/latest/developer-guide.htm#jPlayer-constructor を見ると、jPlayerオブジェクトの再生開始と再生停止のメソッドは それぞれ、$(id).jPlayer( "play" )、$(id).jPlayer( "stop" )ですね。 これを使えばよいだけかと、 Example #1:の例に摘要するとして、 $(document).ready(function() {   $("#jpId").jPlayer( {    ready: function () {     this.element.jPlayer("setFile", "../mp3/elvis.mp3"); // Defines the mp3     this.element.jPlayer("stop")    }   }); }); Example #3:の例に摘要するとして、 $(function() { // executed when $(document).ready()   $("#jpId").jPlayer( {    ready: function () {     this.element.jPlayer("setFile", "http://www.myDomain.com/mp3/elvis.mp3").jPlayer("stop"); // Not Auto-Plays the file    },    swfPath: "jPlayer/js"   }); });

すると、全ての回答が全文表示されます。

関連するQ&A