Javascript标签不会在php循环内关闭

时间:2012-02-28 17:48:40

标签: php javascript loops syntax

这是代码片段无法正常工作。由于某种原因,javascript的结束</script>标记无法识别。 javascript用于选中所有框,它将选中或取消选中每个表单生成的所有复选框。每个表单都是独立的,所以我尝试通过包含在php循环中来减少我的代码。我有一个版本的代码工作,但它涉及多次重复相同的JavaScript示例。如果您能想到以不同方式执行此操作的方法,请随意改进代码。目前虽然我需要弄清楚为什么javascript的结束标记不起作用。

foreach($words as $word){
    $i++;
    $qry = "Select * FROM subs WHERE type = '$word'"; 
    $q = mysql_query($qry) or die(mysql_error()); 
?>

<script type="text/javascript">
    checked=false;

    function checkedAll<?=$i?>(frm<?=$i?>) 
    { 
        var aa= document.getElementById('frm<?=$i?>'); 
        if(checked == false) {
            checked = true
        } 
        else{
            checked = false
        } 

        for(var i =0; i < aa.elements.length; i++) {
            aa.elements[i].checked = checked;
        }
    } 
    </script>
<?
    echo '<form action="attacher.php" method="POST" id="frm'.$i.'" >';
    echo '<input type="hidden" name="template" value="16">';
    echo "<table border='1' cellpadding='10'>";
    echo "<tr><td colspan=4 align='center'><strong>$word</strong></td> <td><input type='submit' value='Add to Template'></td></tr>";
    echo "<tr><th><input type='checkbox' name='checkall".$i."' onclick='checkedAll".$i."'(frm".$i.");'></th><th colspan=3> CONTROLS</th> <th>$word's</th> </tr>";

    // loop through results of database query, displaying them in the table
    while($row = mysql_fetch_array($q)) {   
        // echo out the contents of each row into  table
        echo "<tr>";
        echo '<td><input type="checkbox" name="word[]" value="'.$row['id'].'"</td>';
        echo '<td><a href="edit.php?id=' . $row['id'] . '">Edit</a></td>';
        echo '<td><a href="delete.php?id=' . $row['id'] . '">Delete</a></td>';
        echo '<td><a href="attacher.php?template=16&word=' . $row['id'] . '">Attach</a></td>';
        echo '<td>' . $row['word'] . '</td>';
        echo "</tr>";
    }
    // close table>
    echo "</table><br>";
    echo '</form>';
}
?>

1 个答案:

答案 0 :(得分:0)

我必须提到你使用的代码约定(即使它是一个 - 但我怀疑它)并不是很整洁。

为什么不使用一些安全的变体? 这样的事情怎么样:

<?php
  //here what you want to do first    
?>

<?php
  echo '<script type="text/javascript">
          ....
        </script>';
?>

<?php
   echo 'rest of your code';
?>

我真的不建议使用短标签......