我想.append到div并使用jQuery将值传递为html
我想传递隐藏的<input type=hidden....>
追加并将其发送为.html
$('#here').append(va_lue).html();
希望你们现在明白
由于 让
答案 0 :(得分:1)
此?
var newHtml= $(newHtml).appendTo( $('#placeToInsert') ).html();
答案 1 :(得分:1)
好的,目前还不清楚你在问什么,但我认为就是这样:
$('#yourDivId').append($('<input/>')
.attr({'type': 'hidden', 'name': 'nameOfParameter', 'value': 'your value'})
);
这会将新的<input>
标记添加到“id”为“yourDivId”的div中。输入字段的类型为“隐藏”,并且具有您想要的任何名称和值。
如果你的输入字段有一个HTML块,那么你会做这样的事情(正如@psychotik已写的那样):
var inputFieldHtml = "<input type='hidden' name='whatever' value='balloons'>";
$('#yourDivId').append($(inputFieldHtml));