我有一个文本框,想要获取值,然后使用删除按钮将其打印在文本框上方。我希望借助jquery
来做到这一点答案 0 :(得分:0)
像这样的东西......(在jQuery文档中检查这个函数)
// Get the value in the textbox
value = jQuery('#text_box_id').val()
// print it above the text box
jQuery('<span>'+value+'</span>').insertBefore(jQuery('#text_box_id'))
我不知道使用删除按钮 ...
是什么意思