可能かどうかはわかりませんが、以下に単純な html テーブルがあります。
<table id="plus" align="center">
<tr>
<th>
</th>
</tr>
</table>
if
ステートメントが一致する場合、<th>
上記のタグ内に画像を追加することは可能ですか? ステートメントが一致しない場合は、代わりに<th>
タグ内に画像リンクを追加できますか?
以下はif
ステートメントです。実際には、「textQuestion」を見つけようとするための PHP が少し含まれている jQuery です。
if (qnum == <?php echo (int)$_SESSION['textQuestion']; ?>) {
<img src="Images/plussigndisabled.jpg" width="30" height="30" alt="Look Up Previous Question" class="plusimage" name="plusbuttonrow"/>
} else {
<a onclick="return plusbutton();">
<img src="Images/plussign.jpg" width="30" height="30" alt="Look Up Previous Question" class="plusimage" name="plusbuttonrow"/>
</a>
}