cfselect问题
我理论上似乎是预填充选择框问题的答案。
<cfselect name = "regions" query = "getRegions" selected="10" value="id" display="name" ></cfselect>
这就是它的输出,
<option value="8">Dumfries & Galloway</option>
<option value="9">Dundee City</option>
<option value="10" selected="selected">East Ayrshire</option>
<option value="11">East Dunbartonshire</option>
但我的选项 10 没有自动选择。 html 看起来没问题,为什么?
谢谢,
R。
I theory seems to be the answer to the pre populated selectbox issue.
<cfselect name = "regions" query = "getRegions" selected="10" value="id" display="name" ></cfselect>
this is what it outouts
<option value="8">Dumfries & Galloway</option>
<option value="9">Dundee City</option>
<option value="10" selected="selected">East Ayrshire</option>
<option value="11">East Dunbartonshire</option>
but my option 10 is not selected automatically. The html looks ok any reason why?
Thanks,
R.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Firefox,那么这可能就是原因,因为它可以在页面重新加载时保持表单值的持久性。您可以使用其他浏览器,或者向查询字符串添加一些内容,例如
?abc=123
。If you are using Firefox then that is probably the reason, because it keeps form values persistent across page reloads. You can use a different browser, or add something to the query string like
?abc=123
.