Create hidden form element on the fly

使用jquery动态创建隐藏输入表单域的最简单方法是什么?


$('<input>').attr('type','hidden').appendTo('form');

回答你的第二个问题:

$('<input>').attr({
    type: 'hidden',
    id: 'foo',
    name: 'bar'
}).appendTo('form');

$('#myformelement').append('<input type="hidden" name="myfieldname" value="myvalue" />');

if you want to add more attributes just do like:

$('<input>').attr('type','hidden').attr('name','foo[]').attr('value','bar').appendTo('form');

Or

$('<input>').attr({
    type: 'hidden',
    id: 'foo',
    name: 'foo[]',
    value: 'bar'
}).appendTo('form');
链接地址: http://www.djcxy.com/p/2370.html

上一篇: jQuery循环通过具有相同类的元素

下一篇: 即时创建隐藏的表单元素