如何在Firefox中点击JQM创建按钮?

时间:2016-03-14 12:54:46

标签: jquery css html5 jquery-mobile

我想在jQuery Mobile支持的网站中进行div可点击。我使用的代码适用于Chrome和Safari,但不适用于Firefox。无论是在桌面上还是在Android FF上。

<button data-icon="eye">
   <a href="//heise.de">
       <div style="font-weight:regular;font-size:12px;color:black;font-weight:normal;">
           2nd line txt
       </div>
   </a>
</button>

目标是显示一个完整尺寸的按钮,左侧是图标,垂直居中,后面是标题,位于描述行的下方。

1 个答案:

答案 0 :(得分:0)

删除按钮标记并将图标移动到锚标记:

<a data-role="button" href="//heise.de" data-icon="eye" data-ajax="false">
    <div style="font-weight:regular;font-size:12px;color:black;font-weight:normal;">
        2nd line txt
    </div>
</a>