谢谢您的反馈。
C1ComboBox在前端渲染的是wijcombobox。
输入框里的文字可以用text获取到。
语法:
- $(function () {
-
- // Get value
- var returnsValue; // Type: string
- returnsValue = $(".selector").wijcombobox("option", "text");
-
- // Set value
- var newValue; // Type: string
- $(".selector").wijcombobox("option", "text", newValue);
-
- });
复制代码 |