- 注册时间
- 2012-7-24
- 最后登录
- 2013-7-25
- 阅读权限
- 10
- 积分
- 160
- 精华
- 0
- 帖子
- 52
|
html :
时间 <input id="dateTime" class="mini-datepicker" style="width:140px;" format="yyyy-MM-dd"/>
游戏类型<input id="gameName" class="mini-combobox" style="width:170px;" textField="text" valueField="id" data="[{ id: '47', text: 'aaa' }, { id: '15', text: 'bbb'},{ id: '11', text: 'ccc'}]" showNullItem="false" allowInput="false"/>
<a class="mini-button" onclick="getAdvanceInfomartion()" >查询</a>
js :
function getAdvanceInfomartion( ) {
var gameName = mini.get('gameName').getValue(); // get gameType value
var dateTime = mini.get('dateTime').getText();// get dataTime value
window.location = "chooesDatas?gameName=" + gameName + "&dateTime=" + dateTime;
}
应该不存在需要mini.parse();
因为下面的dateTime是可以获取到值的。
现在我按照管理员你说的设置了valueField和textField后,仍然无法获取当前选中的值。 |
|