1

所以我是 jquerymobile 世界的新手。我正在尝试在我的用户页面周围放置一个 jquerywrapper。我有大部分工作,但我卡在页面很宽并且不适合移动设备的宽度并且它似乎是固定宽度并且无法滚动

所以我正在寻找有关正确方法的建议。不能更改宽数据/页面。谢谢你的帮助

一些关键要素:

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="/inc/jquery.mobile-1.3.1/jquery.mobile-1.3.1.min.css">

<body class="ui-mobile-viewport ui-overlay-c" >
   <div class="pagewithmenu" data-role="page" id="user-home" data-theme="d" data-url="user-home">
       <div  data-theme="b" data-role="header" style="text-align: center;" data-title="<?=$siteuser->fname?> <?=$siteuser->lname?>">
            <?=$siteuser->fname?> <?=$siteuser->lname?>
            <a  href="/" data-role="button" class="u-home" data-icon="home" data-iconpos="notext" data-theme="b" data-iconshadow="false" data-inline="true">Home</a>
       </div>

       <div id="mycontent" data-role="content" >
         <div class="article" style="ov">
             <!--
             ***** WIDE PAGE DATA HERE ***** 
             this is user generated code and can be anything
             for example this is one i am seeing the problem 
             -->
             <table width="663" cellspacing="0" cellpadding="2" bordercolor="purple" border="5" background="http://www.unitnet.com/sboggs/picts//purple_star.jpg" height="497" class="c3">
                  <tr>
                    <td>
                     some picts
                    </td>
                  </tr>
              </table>
         </div>    
         </div>    
       </div>        
4

0 回答 0