분류 jquerymobile

버튼에 삭제 아이콘 추가하기

컨텐츠 정보

  • 조회 2,622 (작성일 )

본문

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet"

  href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />

<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>

<script

  src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

</head>

<body>

  <div data-role="page">

    <div data-role="content">

      <a href="" data-role="button" data-icon="delete">Delete</a>

    </div>

  </div>

</body>

</html>