我有一个jquery模式,用于在用户点击页面中的拒绝按钮时获取用户的评论。
问题是当我输入一些注释并确认模态中的拒绝按钮时,我无法获得注释textarea的值。当我重新加载页面并再次执行此过程时,在重新加载页面之前,我得到了textarea的值。
这是jquery函数:
$("#rejectBtnHOD").on('click', function(){
$("#modal-container-522009").modal(); // Displays modal well
});
$(document).on("click", "#confirmRejection", function(){
var vid = "<?php echo $fields['vid']; ?>"; // getting the request id well
var rejComment = $('body').find('#comment').val(); // cant get the value of textarea
alert(rejComment); return false;
});
HTML code(modal):
<div class="modal fade" id="modal-container-522009" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button>
<h4 class="modal-title" id="myModalLabel">
Leave a comment!
</h4>
</div>
<div class="modal-body" style="height: 300px;">
<textarea id="comment" class="col-md-12" style="height: 200px;" ></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button id="confirmRejection" type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
顺便说一句,如果我用<textarea>
替换<input type="text">
标签,它就可以了!
答案 0 :(得分:0)
要获取您必须执行的文本区域的值
$("#ID").html()
因为您正在获取XML标签之间的值。
答案 1 :(得分:0)
尝试:
var rejComment = $('#comment').val();