jquermobile如何让文字与文本框并排显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquermobile如何让文字与文本框并排显示相关的知识,希望对你有一定的参考价值。
参考技术A 1、引入JQuery和JQueryMobile的开发库<head>
<link rel="stylesheet" href="jquery.mobile-1.3.2.min.css"> jquerymobile样式
<script src="jquery-1.8.3.min.js"></script> jquery库
<script src="jquery.mobile-1.3.2.min.js"></script> jquerymobile库
</head>
2、定义page对象
<div data-role="page" id="pageone">
</div>
3、内部添加头部,底部和中间区域三部分
<div data-role="header">
<h1>在此处插入标题</h1>
</div>
<div data-role="content">
<p>在此处插入正文</p>
</div>
<div data-role="footer">
<h1>在此处插入页脚文本</h1>
</div>
4、保存成html文件就可以在手机上正常浏览显示了。
以上是关于jquermobile如何让文字与文本框并排显示的主要内容,如果未能解决你的问题,请参考以下文章