텍스트로 빈공간을 두는 방법
본문
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header" data-theme="b">
<h1>Home</h1>
</div>
<div data-role="content" data-theme="b"></div>
<div data-role="footer" data-position="fixed" data-id="pFooter">
<div data-role="navbar">
<ul>
<li><a href="#" data-icon="custom" class="ui-btn-active">Home</a></li>
<li><a href="#first" data-icon="grid">Page1</a></li>
<li><a href="#" data-icon="star">Page2</a></li>
<li><a href="#" data-icon="arrow-r" data-iconpos="notext"> </a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
- 이전글뒤로가기 버튼으로부터 텍스트 제거 15.05.26
- 다음글클릭 이벤트로 버튼 텍스트 변경 15.05.26