- 注册时间
- 2015-12-28
- 最后登录
- 2023-3-3
- 阅读权限
- 10
- 积分
- 100
- 精华
- 0
- 帖子
- 6
|
我有一个combobox 是动态加载数据 然后我监听了onbeforeshowpopup="onBeforeshowpopup(e)"
window.onBeforeshowpopup = function(e){
var reg = RegExp(/key=/);
var combobox = mini.get(e.sender.id);
var text = combobox.getText();
var url = e.sender.url;
var ajaxUrl = url;
if(url && url.match(reg)){
var array = url.split('key=');
ajaxUrl = array[0];
}
$.ajax({
async:false,
url:ajaxUrl,
type:'post',
dataType:'json',
data:{"key":text},
success:function(msg){
combobox.setData(msg);
}
});
}
前端页面上输入框一输入数据 输的数据就被删除了 什么原因啊
|
|