我有一个带有文本输入的表单。在提交时,我想在名为“容器”的div中添加文本。我不想完全替换容器内部的内容,因为有时会有其他元素,我不能追加/前置,因为有时根本就没有任何元素。我该怎么办?
JSFIDDLE:http://jsfiddle.net/8wh3E/
$(document).ready(function() {
$('#form').submit(function() {
var text= $('#text').val();
// Add the text inside the container
});
});
答案 0 :(得分:1)
查看jQuery append
和appendTo
http://api.jquery.com/append/。
$(document).ready(function() {
$('#form').submit(function() {
var text= $('#text').val();
$('#container').append(text);
});
});