分类: JavaScript
2013-06-25 09:08:40
那个是链接发起请求时的时间、·disableCachingParam: '_dc' 本意确实是为了防止request缓存代码:
function() {
var values = Ext.getCmp('con').getValue();
Ext.Ajax.request({
url: 'selectunit.php',
success: function(response) {
var text = Ext.JSON.decode(response.responseText);
alert("ok");},
method: "get",
failure: function(){Ext.Msg.alert("failure");},
params: {'id': values}
});
}
注:con是一个文本框的id