0

私はこのコードを持っています:

<?php
$i=5;
while($i > 0){
echo '
<table width="500px" border="1">
  <tr>
    <td>
    <button id="button">Show comments</button>
    </td>
  </tr>
  <tr>
    <td id="comments" style="display:none;height:300px;width:100%;"></td>
  </tr>
</table>

<script type="text/javascript">
$("#button").toggle(
    function (){
        $("#button").text("Hide Comments");
        document.getElementById("comments").style.display="inline";
    },function (){
        $("#button").text("Show Comments");
        document.getElementById("comments").style.display="none";
    }
);
</script>
<script type="text/javascript" src="jquery.js"></script>
';

$i--;

}
?>

[コメントを表示]ボタンをクリックすると、コメントボックスが表示されます。それは最初のもののために働きます。しかし、それは他の人には機能しません。何が問題なのですか。

4

2 に答える 2

5

PHP インタープリターをエスケープして、HTML マークアップをページに直接出力するだけです。また、ID をクラスに変更して、風変わりな追加番号なしで簡単に再利用できるようにします。

<?php
$i=5;
while($i > 0):
?>
    <table width="500px" border="1">
       <tr>
          <td><button class="button" data-clicked="0">Show comments</button></td>
       </tr>
       <tr>
          <td class="comments" style="display:none;height:300px;width:100%;"></td>
       </tr>
    </table>
<?php
$i--;
endwhile;
?>

show が何なのかはわかりませんthe element with an IDが、ボタンだったと仮定します。

$(".button").click(function (){
    var $this = $(this);
    if(!$this.data('clicked')){
        $this.text("Hide Comments");
        $this.closest('table').find('.comments').css('display', 'inline');

        $this.data('clicked', 1);
    }else{
        $this.text("Show Comments");
        $this.closest('table').find('.comments').css('display', 'none');

        $this.data('clicked', 0);
    }

});

その JavaScript をwhilephp のループで出力しないでください。ページの先頭または別のファイルに含めるだけです。

編集

以下のコメントに示されているように、jQuery 1.9 ではtoggle意図したとおりに機能しなくなりました。回避策としてdata attribute、ボタンに a を追加し、クリックするたびにチェックすることができます。

<button class="button" data-clicked="0">

ご覧のとおり、新しいdata-clicked属性が追加されました。

上記の JavaScript では、その動作が完全に変更されていることがわかります。if/else状態の確認は弊社にて行っておりdata-clickedます。

于 2013-02-04T04:52:45.277 に答える
0

一般に、コード、マークアップ、およびスタイルの宣言を分離することをお勧めします。スタイルの問題として、私は番号付き ID を好みます。デバッグに役立つことがわかりました。ymmv また、人々が変更をより簡単に追跡できるように、変更をアニメーション化することも好きです。

<!doctype html>
<html>
    <head>
        <title>Button Testing 1 2 3</title>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
        <style>
            .comment {
                display: none;
                height: 0px;
                width: 500px;
            }
            td  {
                width: 500px;
                border: 1px solid #555;
                border-collapse: collapse;
            }
        </style>
    </head>
<body>
<?
$j = 0;
while ($j < 5 ) {
?>
    <table>
      <tr>
        <td>
        <button id="button_<?= $j ?>" class="button">Show comments</button>
        </td>
      </tr>
      <tr>
        <td class="comment"><span id="comment_<?= $j ?>">J = <?= $j ?></span></td>
      </tr>
    </table>
<? 
    $j++;
} ?>

<script type="text/javascript">
$(document).ready(function(){

    $(".button").click(function(){
        var id = $(this).attr('id');
        var j  = id.substr(id.indexOf('_') +1);

        if ($(this).hasClass('revealed')) {
            $(this).removeClass('revealed').text('Show Comments');
            $('#comment_'+j).removeClass('revealed').parent().animate({'height' : 0}, function(){$(this).css({'display': 'none'})});
        } else {
            $(this).addClass('revealed').text('Hide Comments');
            $('#comment_'+j).addClass('revealed').parent().css({'display': 'inline'}).animate({'height' : '300px'});
        }
    });
});
</script>
</body>
</html>
于 2013-02-04T05:50:45.893 に答える