我正在尝试建立一个在线考试系统。为了提出问题,我正在动态创建两种类型的输入字段。一个是问题,另一个是问题的选项。我的jquery代码
<div id="q_paper"></div>
<br/><button type="button" id="go2">Ok</button>
for(var i=0;i<total_question;i++){
var nw="<div class='q'>("+(i+1)+".)<textarea class='text_area'>Question"+(i+1)+"</textarea><br/>";
for(var j=0;j<option_number;j++){
nw+="<input type='radio'/><input type='text' class='opt' value='option"+(j+1)+"' onfocus='this.value="+null+"'/>"+'<br/>';
}
nw+="</div>";
$("#q_paper").append(nw);
}
$(".text_area").click(function(){
$(this).text("");
});
但我无法从两个输入字段字段访问输入文本。我尝试了很多次但都失败了。单击确定按钮时如何获取输入文本
答案 0 :(得分:2)
你应该使用事件委托.on()函数来访问动态添加的内容..以下是实现这一点的示例,希望对此有所帮助:
<script>
$(function(){
$(document).on('click','#go2', function(){
$('input.opt').each(function(){
alert($(this).val());
});
}}
});
</script>