Answers:
$('#input-field-id').val($('#input-field-id').val() + 'more text');
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input id="input-field-id" />
$('#input-field-id')
两次电话...虽然很简单-+1
innerHTML
。
有两种选择。Ayman的方法是最简单的,但是我要在此添加一点注释。您应该真正缓存jQuery选择,没有理由调用$("#input-field-id")
两次:
var input = $( "#input-field-id" );
input.val( input.val() + "more text" );
另一个选项.val()
也可以将函数用作参数。这具有轻松处理多个输入的优点:
$( "input" ).val( function( index, val ) {
return val + "more text";
});
// Define appendVal by extending JQuery
$.fn.appendVal = function( TextToAppend ) {
return $(this).val(
$(this).val() + TextToAppend
);
};
//_____________________________________________
// And that's how to use it:
$('#SomeID')
.appendVal( 'This text was just added' )
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<textarea
id = "SomeID"
value = "ValueText"
type = "text"
>Current NodeText
</textarea>
</form>
在创建此示例时,我有些困惑。“ ValueText ” vs> 当前NodeText <是否不.val()
应该在value属性的数据上运行?无论如何,我和你我迟早都会解决这个问题。
但是,目前的重点是:
使用表单数据时,请使用.val()。
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style type="text/css">
*{
font-family: arial;
font-size: 15px;
}
</style>
</head>
<body>
<button id="more">More</button><br/><br/>
<div>
User Name : <input type="text" class="users"/><br/><br/>
</div>
<button id="btn_data">Send Data</button>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#more').on('click',function(x){
var textMore = "User Name : <input type='text' class='users'/><br/><br/>";
$("div").append(textMore);
});
$('#btn_data').on('click',function(x){
var users=$(".users");
$(users).each(function(i, e) {
console.log($(e).val());
});
})
});
</script>
</body>
</html>