答案 0 :(得分:0)
可以使用“点击”功能来完成:
$(".addbutton").on("click", function(){
var x = $(".textbox").val();
$(".box").html(x);
})
并使用“ x”按钮将其删除:
$(".xbutton").on("click", function(){
$(this).closest("div").find(".box").html("");
})
让我知道它是否有效
答案 1 :(得分:0)
您可以尝试以下代码:
// find elements
var box = $("#banner-message")
// handle click and add class
$('#add').on("click", function(){
box.append("<p>Some text <button class='text-more'>x</button></p>")
})
$("body").on('click', '.text-more', function(){
$(this).parent().remove()
})