谁知道jquery怎么往div里 添加input

请问用jquery怎么往div里面添加一个按钮

第1个回答  2013-08-06
$("div").append("input的html代码");
第2个回答  2013-08-12
<input type="button" onclick="addButton()" value="点击添加"/>
<div id="div"></div>
js中:
function addButton(){
var button="<input type='button' value='按钮'/>";
$("#div").append(button);

}本回答被网友采纳
相似回答