ExtJs获取⽂本框中值的⼏种⽅式
1、Html⽂本框
html内容文本框如:<input type="text" name="test" id="test" >
获取值的⽅式为:
var tValue = Dom('test').value;
或者
var tValue = ElementById('test').value
2、ExtJs的组件
如:{
id:'test',
xtype:'textfield',
fieldLabel:' ;测试',
name:'test',
width:370
}
获取值的⽅式为:
var tValue = Cmp('test').getValue()
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论