溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

jQueryMobile之窗體長(zhǎng)內(nèi)容的缺陷與解決方法實(shí)例分析

發(fā)布時(shí)間:2020-10-09 04:10:20 來源:腳本之家 閱讀:153 作者:yongh701 欄目:web開發(fā)

本文實(shí)例講述了jQueryMobile窗體長(zhǎng)內(nèi)容的缺陷與解決方法。分享給大家供大家參考,具體如下:

前面的一篇文章《jQueryMobile之Helloworld與頁(yè)面切換的方法》沒有考慮到窗體中放置長(zhǎng)內(nèi)容的狀況

一旦窗體中出現(xiàn)長(zhǎng)內(nèi)容,使用筆者那種固定header與footer的全屏布局是存在缺陷的,

jQueryMobile之窗體長(zhǎng)內(nèi)容的缺陷與解決方法實(shí)例分析

如圖所示,長(zhǎng)內(nèi)容最后的內(nèi)容,直到滾動(dòng)條拉到最底部也無法窮盡,
而且很有可能的是,雖然現(xiàn)在這個(gè)地方的內(nèi)容是顯示為半透明,但往往這個(gè)位置是一些提交按鈕什么的,

用戶根本就沒法點(diǎn),

因此,需要進(jìn)行改進(jìn),把原來的代碼:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>a</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<link rel="stylesheet" href="jqmobile/jquery.mobile-1.4.5.css" rel="external nofollow" rel="external nofollow" >
<script src="jqmobile/jquery-1.11.1.js"></script>
<script src="jqmobile/jquery.mobile-1.4.5.js"></script>
</head>
<body>
<div data-role="page" data-position="fixed" data-fullscreen="true">
 <div data-role="header" data-theme="b" data-tap-toggle = "false">
  <h2>title</h2>
 </div>
 <div data-role="content">
  <p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p>
 </div>
 <div data-role="footer" data-position="fixed" data-fullscreen="true" data-theme="b" data-tap-toggle = "false">
   <div data-role="navbar">
   <ul>
    <li><a href="a.html" rel="external nofollow" rel="external nofollow" target="_self" data-icon="info">a</a></li>
    <li><a href="b.html" rel="external nofollow" rel="external nofollow" target="_self" data-icon="grid">b</a></li>
    <li><a href="#" rel="external nofollow" rel="external nofollow" class="ui-btn-active ui-state-persist" data-icon="star">c</a></li>
   </ul>
  </div>
 </div>
</div>
</body>
</html>

之中的content圖層加上樣式,也就是變成:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>a</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<link rel="stylesheet" href="jqmobile/jquery.mobile-1.4.5.css" rel="external nofollow" rel="external nofollow" >
<script src="jqmobile/jquery-1.11.1.js"></script>
<script src="jqmobile/jquery.mobile-1.4.5.js"></script>
</head>
<body>
<div data-role="page" data-position="fixed" data-fullscreen="true">
 <div data-role="header" data-theme="b" data-tap-toggle = "false">
  <h2>title</h2>
 </div>
 <div data-role="content" >
  <p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p><p>本頁(yè)還在建設(shè)中</p>
 </div>
 <div data-role="footer" data-position="fixed" data-fullscreen="true" data-theme="b" data-tap-toggle = "false">
   <div data-role="navbar">
   <ul>
    <li><a href="a.html" rel="external nofollow" rel="external nofollow" target="_self" data-icon="info">a</a></li>
    <li><a href="b.html" rel="external nofollow" rel="external nofollow" target="_self" data-icon="grid">b</a></li>
    <li><a href="#" rel="external nofollow" rel="external nofollow" class="ui-btn-active ui-state-persist" data-icon="star">c</a></li>
   </ul>
  </div>
 </div>
</div>
</body>
</html>

則可以窮盡頁(yè)面了,如下圖所示:

 jQueryMobile之窗體長(zhǎng)內(nèi)容的缺陷與解決方法實(shí)例分析

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery常用插件及用法總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery切換特效與技巧總結(jié)》、《jQuery遍歷算法與技巧總結(jié)》、《jQuery常見經(jīng)典特效匯總》、《jQuery動(dòng)畫與特效用法總結(jié)》及《jquery選擇器用法總結(jié)》

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI