我刚开始在项目中使用jquery mobile。我遇到的问题是我添加的每个锚标签,它将其内容设置为固定的高度值。我无法找到修改该行为的方法。
我正在使用的代码示例是:
<div data-role="content" data-theme="none" class="flex-container">
<div><strong>Something</strong></div>
<a href="#an-href" data-theme="none"><img src="../animg.png" alt="Icon" />A text</a>
</div>
这只发生在我身上吗?
答案 0 :(得分:0)
我认为这取决于你的链接。它在列表视图中吗?
我尝试在内部(不同大小)制作两个不同图像的链接,但我没有看到您描述的行为。
此外,即使可能不相关,链接中的#通常用于链接到另一个页面。
请参阅此处 - http://jsfiddle.net/TeNCE/
你能提供你的jsFiddle还是编辑这个?
<div data-role="page">
<div data-role="header">
<h1>Header</h1>
</div>
<div data-role="content" data-theme="none" class="flex-container">
<div><strong>Something</strong></div>
<a href="#an-href"><img src="https://cdn1.iconfinder.com/data/icons/yooicons_set01_socialbookmarks/64/social_google_box.png" alt="Icon" /></a>
<a href="#an-href"><img src="https://cdn1.iconfinder.com/data/icons/yooicons_set01_socialbookmarks/128/social_google_box.png" alt="Icon" /></a>
</div>
</div>