Button with在Mozilla Firefox中不起作用,在Google Chorme中工作

时间:2015-10-31 07:10:28

标签: javascript html firefox button anchor

我有一个表单,其中两个按钮与Google Chrome正常配合,但在Mozilla Firefox中无效。我该怎么办?

<td>
    <button type="button">
        <a href="edit_teacher.php?edit=<?php echo $row['teach_id']; ?>">
            <span class="glyphicon glyphicon-edit" style="font-size: 20px; color: green;"></span>
        </a>
    </button>
</td>
<td>
    <button type="button">
        <a href="delete_teach.php?del=<?php echo $row['teach_id']; ?>" onclick="return confirm('The Record will be Deleted....???');">
            <span class="glyphicon glyphicon-trash" style="font-size: 20px; color: #ac2925;" ></span>
        </a>
     </button>
</td>

1 个答案:

答案 0 :(得分:2)

void Draw_Geometry(Geometry geo) { using (DrawingContext dc = RenderOpen()) { dc.DrawDrawing(Drawing); dc.DrawGeometry(Brushes.Brown, new Pen(Brushes.Brown, 0), geo); } } 标记放在a标记之外。否则按钮将消耗该事件。

button

HTML5 spec for button实际上会使按钮内的交互式内容无效。

  

内容模型:

     

短语内容,但必须没有互动内容后代。

因此,Firefox正在禁止与按钮内的内容进行交互。