「jQuery入門」複数の要素に対してmap()の使い方

サンプルコード
<script src="/jquery/1.12.4/jquery.min.js"></script>
<input value="text">
<input value="text">
<input value="text">
<button id="btn">ボタン</button>
<script>
$('#btn’).click(function(){
$('input’).map(function(index,dom){
dom.value += index;
});
})
</script>

JavaScript

Posted by arkgame