この章を読み進める前に、Onsen UIをはじめようとOnsen UIの基礎に目を通して頂くことを推奨いたします。心配ありません、読み終わるまで5分もかかりません。
Onsen UIとjQueryの組み合わせは非常に簡単です。
Onsen UIコンポーネントは、他のDOM要素と同じように操作できます。
下記のコードは、jQueryとOnsen UIをCDNから読み込み、組み合わせる例となります。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsenui.css">
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsen-css-components.min.css">
<script src="https://unpkg.com/onsenui/js/onsenui.min.js"></script>
<script src="https://unpkg.com/jquery/dist/jquery.min.js"></script>
</head>
<body>
<script>
$(function(){
// Initialization code
$('ons-button').on('click', function(e) {
ons.notification.alert('Button is tapped!');
})
});
</script>
<ons-button>Click me!</ons-button>
</body>
</html>