0

我想在 JQM 页面中有一个 2 列布局。第一列将是图像,第二列将是一些文本。

<div data-role="content">
    <div class="ui-grid-a">
        <img class="ui-block-a" src="/image/no-picture.jpg"/>
        <div class="ui-block-b">
            <h1>Some Text Here</h1>         
        </div>
    </div>
</div>

我尝试设置max-width,它在浏览器中有效,但在android webview. 做这个的最好方式是什么?

谢谢

4

2 回答 2

1

是一个工作示例。我已经在 Galaxy S3 andr 上测试过了。4.1

  <div class="ui-grid-a">
    <div class="ui-block-a">
      <img src="http://www.index.hr/thumbnail.ashx?path=images2/europskimljekari_AFP26112012.jpg&width=325&height=197"/>
    </div>
    <div class="ui-block-b">
      <h1>Some Text Here</h1>
    </div>
  </div>

如果您想要其他内容,请给我评论。也不要忘记在你的标题中使用它:

<meta content="width=device-width, minimum-scale=1, maximum-scale=2" name="viewport"> 
于 2012-11-27T09:00:28.420 回答
0
http://jquerymobile.com/test/docs/api/methods.html

你可以找到所有数据..

http://operationmobile.com/dont-forget-to-call-refresh-when-adding-items-to-your-jquery-mobile-list/

也检查上面的链接也可以。

于 2012-11-27T09:05:13.853 回答