本文介绍了onClick添加输入字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在每次点击按钮时在DIV #mainC
的中心添加透明输入文本字段。
我试着用jQuery来做这件事,但没有成功。
使用: $(#abc)。click(function(){
$(#main)。append('< input type =text/>');
});
demo:
I want to add a transparent input text field in the centre of DIV #mainC
each time the button is clicked.
I tried doing this with jquery but did not succeed.
解决方案
use append()
:
$("#abc").click(function() {
$("#main").append('<input type="text" />');
});
demo: http://jsfiddle.net/6nkd5/5/
这篇关于onClick添加输入字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!