0

目前我有一个 JQueryMobile 表单,它有 2 个文本框,但可能存在我必须添加更多文本框的情况。如何做到这一点?...

例如,用户将单击屏幕中的添加按钮,它会在屏幕中显示一个新的文本框。我试图追加,但它不能正常工作。

如何通过向 JQueryMobile 表单动态添加文本框来实现这一点?

提前感谢您的时间。

4

1 回答 1

1

您在评论中说逻辑应该与 jquery 相同。在 jquery 我做这样的事情来创建新的表单元素:

//element where you are going to append your dynamically created element
var body = document.getElementsByTagName('body'); 

//create textbox and append it to the body of the document.
$('<input>').attr({'type' : 'text', 'placeholder' : 'some text'}).appendTo(body); 
于 2012-07-12T06:23:40.170 回答