분류 jquerymobile

버튼으로서의 앵커 표시

컨텐츠 정보

  • 조회 2,421 (작성일 )

본문

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.6.2.js'></script>
<script type="text/javascript"
  src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.js"></script>
<link rel="stylesheet" type="text/css"
  href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
</head>
<body>
  <ul data-role='listview'>
    <li>
      <div data-role="controlgroup" data-type="horizontal">
        <a href="" data-role="button">Yes</a> 
        <a href="" data-role="button">No</a> 
        <a href="" data-role="button">Maybe</a>
      </div>
    </li>
  </ul>
</body>
</html>