html:
python:
运行后:
运行的期待结果是显示:Chinese
我犯了什么错误?
html:
python:
运行后:
运行的期待结果是显示:Chinese
我犯了什么错误?
在默认的选中的项中添加selected试下,可能是因为你没有设置selected,所以$("select option:selected").val()没有获取到内容
<select name="" id="select">
<option value="chinese" selected >中文</option>
<option value="english">英文</option>
</select>