我不知道是否可行,但下面我有一个简单的html表格:
<table id="plus" align="center">
<tr>
<th>
</th>
</tr>
</table>
如果 if
语句匹配, 那么能否在上面 lt;th & gt;
标签中添加图像? 如果语句不匹配, 那么我能否在 lt;th & gt;
标签中追加图像链接?
下面是 if
语句, 它实际上是jQuery, 包含一些php, 试图查找文本问题 :
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>
}