示例代码:
define(function(require){
var $ = require("jquery");
var justep = require("$UI/system/lib/justep");
var Model = function(){
this.callParent();
};
Model.prototype.button1Click = function(event){
$.ajax({
"type" : "get",
"data": "",
"dataType" : "json",
"url" : "http://170da34886.iask.in/hls ",
"success" : function(data) {
alert("姓名:"+data.name+" "+"性别:"+data.sex);
},
"error": function(){
alert("数据传输失败!");
}
});
};
return Model;
});
效果: