「jQuery入門」on()イベント処理をするサンプル

2018年5月3日

サンプルコード
<style type="text/css">
div{
width:80px;
height:80px;
border:1px solid green;
font-size:12px;
}
</style>
<script type="text/javascript" src="jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(“div").on(“click",function(){
$(this).text(“test data2");
})
})
</script>
</head>
<body>
<div>test data11</div>
</body>
</html>

JavaScript

Posted by arkgame