1
私のonclick関数に次のエラーが表示されます: "Uncaught ReferenceError:IDSelectionnerが定義されていません"。私は、エコーの関数を呼び出します。私が気付いていない、または私の問題であるテーブルに関連するものは何も分からないのですか?未知のReferenceError:IDSelectionnerが定義されていません
は、ここでその部分のコードです:
<?php require_once('connect.php');?>
<script type="text/javascript">
var typeDroitIDSelectionne = 1;
</script>
<table>
<tr>
<td>
<div id="titreTableau">
<label>Type de droit</label>
</div>
</td>
</tr>
<?php
$stmt = $db->prepare('SELECT * FROM typeDroits');
$stmt->execute() or die(var_dump($stmt->errorInfo()));
$result = $stmt->fetchAll();
foreach ($result as $row) {
$typeDroitID = $row['type_droit_ID'];
$typeDroitDesc = $row['type_droit_description'];
echo("<tr><td>
<label id='".$typeDroitID."' onclick='IDSelectionner(this.id)'>".$typeDroitDesc."</label>
</td></tr>");
}
?>
</table>
<script type="text/javascript">
function IDSelectionner (elem) {
alert(elem);
typeDroitIDSelectionne = elem;
}