1

我的理论似乎是预先填充的选择框问题的答案。

<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。

4

1 回答 1

0

如果您使用的是 Firefox,那么这可能就是原因,因为它使表单值在页面重新加载时保持不变。您可以使用不同的浏览器,或在查询字符串中添加一些内容,例如?abc=123.

于 2011-03-07T01:00:28.903 回答