在psd中启动infopath更新表单模版 注:虽然可能在infopath design中预览的时候会报错说是跨域数据不能加载,别理他 继续发布上站点就不会有这个错误了. 绑定list后效果: 参考url: Binding SharePoint List Data to an InfoPath Form Template http://www.youtube.com/watch?v=6NySzgGhnaw
将: $("input[type=radio][name=optionsContractGroup][value=201]").attr("checked",true); 替换成: $("input[type=radio][name=optionsContractGroup][value=201]").prop("checked",true); 将attr方法替换成prop方法. radio Buttons and .attr