|
require(["domReady!","mobile","jcl","wmWebUI"],function(doc, Mobile, $,WmWebUI) {
setTimeout(function(){
var tab1=WmWebUI.select("tab1");
tab1.addListener(0,function(){
$("#titleName").html("有线资源");
});
tab1.addListener(1,function(){
$("#titleName").html("无线资源");
});
tab1.addListener(2,function(){
$("#titleName").html("网络测试");
});
},800)
//alert(tab1);
});
|