javascript – 如何让jquery移动控制组宽度100%?

前端之家收集整理的这篇文章主要介绍了javascript – 如何让jquery移动控制组宽度100%?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 jquery mobile进行演示……
我想让localnav的宽度为100%……
但我不知道该怎么做……
代码在这里……
<ul data-role="controlgroup" data-type="horizontal" class="localnav">
    <li><a href="#" data-role="button" data-transition="fade" class="ui-btn-active">111</a></li>
    <li><a href="#" data-role="button" data-transition="fade">222</a></li>
    <li><a href="#" data-role="button" data-transition="fade">333</a></li>
</ul>

帮帮我…谢谢……

解决方法

这就是我做的.工作得很好.

CSS:

<style>
    .ui-grid-a,.ui-grid-a .ui-controlgroup-controls {width: 100%}
    #homePageButton {width:49%;float:left;margin-left:1%}
    #logoutButton {width:49%}
    #footer {height:45px}
</style>

HTML:

<div data-role="footer" data-position="fixed" id="footer">
    <div data-role="controlgroup" data-type="horizontal" class="ui-grid-a">
        <a href="#" data-role="button" data-icon="home" id="homePageButton">Home Page</a>
        <a href="#" data-role="button" data-icon="forward" data-iconpos="right" id="logoutButton">Log Out</a>
    </div>
</div>

结果:

原文链接:https://www.f2er.com/jquery/157475.html

猜你在找的jQuery相关文章