我的页面中有一个带有输入的表单,我想用xml字符串的值填充这些字段。 xml标签是输入的id。
如何从该xml字符串中填充表单输入?
更新: 这是myy xml标签:
<Main><row><sheet_number>1</sheet_number><created_by>aa </created_by><created_at>2011-02-13</created_at><updated_by>bb </updated_by><updated_at>2011-02-13 13:24:39.481057</updated_at><type>0</type>
感谢提前。
答案 0 :(得分:0)
您知道标签/ ID还是生成/随机?如果它们不变,您可以使用此http://papermashup.com/parse-xml-with-jquery/
不使用HTML,只需使用jQuery的.val(value)
方法设置输入元素的值:http://api.jquery.com/val/#val2