我有一个从用户那里收集国家和州的表单。我使用bootstrap-formhelpers-states.js库来收集这些数据。但是当我向提交的post数组赋值时,只发送了州和国家的短码。
我的问题和这个Bootstrap form helper not picking complete country name一样
但这也没有得到回答。谢谢大家
发布于 2017-05-10 18:54:03
我假设代码是用于选择选项的值。您可以使用jquery通过每个选项的文本来更改每个选项的值。也许行得通。
<script>
$(document).ready(function() {
$("#selectId > option").each(function() {
$(this).val($(this).text());
alert(this.text + ' ' + this.value);
});
});
</script>https://stackoverflow.com/questions/43887020
复制相似问题