Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
桌子
Id(Key) Description(Value) Car 1 scott BMW 2 john ford
Id 和 Description 将是 Dropdown 的键值对。我必须根据选择的 Id 在文本框中显示汽车名称。
实现这一目标的最佳方法是什么。
有没有办法避免每次下拉事件更改都调用服务器。
您可以将“汽车”存储为下拉元素的自定义客户端属性(在呈现列表项时ListItem它将成为元素的属性。<option>
ListItem
<option>
在客户端onchange事件上,您可以检索该属性并将其显示在文本框中。
onchange