I want to get values of the input element that those elements are under the same name, name=\"items[]\" for example:
...
Or use jQuery's map function:
$("div input[name='items[]']").map( function() { return $(this).val(); } ).get();