html ComboBox或DropDownlist
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html ComboBox或DropDownlist相关的知识,希望对你有一定的参考价值。
// get selected text
$("#ddlProcessDept option:selected").text();
/// link
eComboBox:
http://www.devcurry.com/2011/05/jquery-editable-combo-box.html
<%-------------------------------------------------------------------
If you want instant update you need to specify the valueUpdate option where the possible events are:
keyup, keypress, afterkeydown:
<input type="text" data-bind="value: Name, valueUpdate: 'afterkeydown'"></input>
/// HTML code
<div class="col-md-6">
<div class="form-group">
<label class="control-label">Users<span style="color: red">*</span></label>
<select data-bind="options: $root.UserArray,
optionsText: 'UserName',
optionsValue: 'SSUserId',
value: $root.UserSelected, event: { change: $root.UserChanged }, optionsCaption: 'Add New'"
id="ddlUserList" class="form-control">
</select>
</div>
</div>
=========== X ============
//// js code
$("#ddlUserList").eComboBox({
'allowNewElements': true, // default : true
'editableElements': true // default : true
});
以上是关于html ComboBox或DropDownlist的主要内容,如果未能解决你的问题,请参考以下文章
ComboBox控件绑定数据源后,添加'请选择'或'全部'
ComboBox SelectedIndex 绑定 -1 或 0 不选择第一项
Extjs3 combobox使用
将数据表中的数据添加到ComboBox控件中
easyui-combobox
使用 DataGridView Combobox 的 SelectionChangeCommitted 事件获取新值或索引