我有一个
HTML数组;
<input class="input_Box" name="authors[]" id="author1"/>
我想要做的是,在不刷新页面的情况下获取此数组的值,(我确实在输入字段旁边显示值,在一个独立的div中)
$(document).ready(function(){ $("input[id^="author"]").change(update); }); function update(){ var authors=new Array(); $("input[id^="author"]").each(function(){authors.push($(this).text()) }); var author= '"' + authors.join('","') + '"'; $('#val-authors').html('authors:<span class="red"> "'+author+'"</span>');}
我在< div id =“val-authors”>中看到的唯一的东西是,“”,
我错过了什么?
提前致谢..