2012/02/05

[jQuery mobile]buttonの作成

今度は、buttonを作りたいと思います。
Button basicsを読んだ結果、下記のようなコードに落ち着きました。

<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=no,minimum-scale=1,maximum-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<input type="button" value="tweet by clicking" id="tweet" />
</div>
</div>
</body>
</html>
実行結果は、下のようになりました。
Uploaded from the Photobucket iPhone App

0 コメント:

コメントを投稿