1

スクリプト src コードを取得するとすぐに、Web サイトの右側のサイドバーにある jQuery トグルが機能しなくなります。私のWebサイトにインストールされている他のプラグインによってjqueryがロードされているため、まだ機能しているはずですが、そうではありません。

ウェブサイトのリンク: http://goo.gl/XuanJ

「予約する」をクリックするとトグルが開きます。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>*
<script type="text/javascript">
$(document).ready(function() {
   $('a.res-toggle').click(function() {
      $('#reservation-box').toggle(400);
      return false;
   );
});
</script>

このコードを保持する場合

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>

私のウェブサイトのスライダーが正しく機能していません.最新のjqueryをインポートしようとしていて、クラッシュしていると思います.

4

2 に答える 2

1

One of the solution would be to move this code block into a seperate file say togglefunctionality.js and put it in your /wp-includes/js/jquery/ directory land then call it like below.

<script type="text/javascript">
$(document).ready(function() {
 $("#side-res-open").click(function() {
 $('#reservation-box').toggle(400);
     return false;
 });
});
</script>

If you still see some conflict, and want to have this on the page only. then replace $ with jQuery and you should be home.

于 2013-02-21T21:09:17.300 に答える