Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created November 10, 2018 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/53c71028761f88586f3fab5a39eb829f to your computer and use it in GitHub Desktop.
Save codingwithsara/53c71028761f88586f3fab5a39eb829f to your computer and use it in GitHub Desktop.
【jQuery】テーブル Tr 行を動的に追加・削除・並び替え・値を取得する方法
<!-- 省略 -->
<script>
$(function(){
// 省略
$('#getValues').click(function(){
var values = [];
$('input[name="name"]').each(function(i, elem){
values.push($(elem).val());
});
alert(values.join(', '));
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment