我没有在javascript中使用黑带,所以请耐心等待,我试着在我去的时候拿起它。
所以我得到了这个效果很好的示例代码,将JSON数据发送回我的index.html文件,无论我将表单字段命名为bam,JSON数据都填充它。
你到底如何填充SELECT字段呢?
这是完成它的AJAX代码:
, success: function (data){
// this uses the "jquery.field.min.js" library to easily populate your form with the data from the server
$("#frmMain").formHash(data);
所以无论我在哪里定义表单字段,如:
<input type="text" name="email" value="" />
它充满了这个JSON数据:
{&#34;性别&#34;:&#34; m&#34;,&#34;名称&#34;:&#34;用户1&#34;,&#34;电子邮件&#34;: &#34; user_1@example.com",&#34; test&#34;:&#34; user_test&#34;,&#34; city&#34;:&#34; test1,test2&#34; }
因此,电子邮件字段显示为user_1@example.com这一切都很棒,但是当我去的时候:
<select name="city" id="city">
</select>
希望test1和test 2出现在下拉列表中,没有运气。我需要做什么才能将其纳入选择表格的选项。
感谢您的帮助...