标题中有多个按钮

n4r*_*zul 1 javascript css jquery jquery-mobile

我试图在jQuery Mobile框架中获得以下效果:

|-------------------------------------------------|
|[button1]      HeaderText/Image  [b1] [b2] [b3]  |
|-------------------------------------------------|
Run Code Online (Sandbox Code Playgroud)

其中[b1],[b2][b3]标题中的小图像按钮.

这目前是否可能?

Pea*_*oon 7

就像这样简单

<div class="ui-btn-right">
    <a href="index.html" data-role="button" data-iconpos="notext"></a>
    <a href="index.html" data-role="button" data-iconpos="notext"></a>
    <a href="index.html" data-role="button" data-iconpos="notext"></a>
</div>
Run Code Online (Sandbox Code Playgroud)