所以,我目前正在尝试这样做:
<table class ="tablez">
<tr>
<th>Table Title </th>
</tr>
<tr>
<td>
<a tabindex="0" class="clickable">Click Me!</a>
<div id="showedClickable">
<p>This is showed when Click Me! is clicked.</p>
</div><!--EO showedClickable -->
</td>
</tr>
</table>
这里是类
#showedClickable {
position:absolute;
display:none;
width:auto;
height:auto;
}
这是您单击时发生的情况。
a.clickable:focus + #showedClickable {
display:block;
}
它在笔记本电脑上的 chrome 上运行良好,但是当我在移动设备(iPhone)上尝试时,这不起作用....这里有什么问题?我该如何解决这个问题,解决这个问题?
感谢您的时间!