<script> <BR>$(function() { <BR>qiyiPlugin.init($("#zong_qiyi")); <BR>}); <BR></script>
//XXXXXXXXXXXXXX
jQuery寫法:
var qiyiPlugin =
{
init: function(parentNode) {
var self = this;
self.parentNode = parentNode;
//刷新局部內容
self.parentNode
.on(> 'refresh',function(event){
self.qiyiList();
});
},
//顯示
qiyiList: function(){
var self = this;
//顯示內功資訊
self.getQiyiList(function(result){
//console.log(result);
if(result.qiyiList){
self.qiyiHself. ();//重新覆蓋html,防止重複顯示內容
self.displayQiyiList(result.qiyiList);//展示頁面內容
}else{
alert("沒有獲得奇藝數據,請查看介面");
}
});
},
//顯示奇藝內容
displayQiyiList: function(qiyiList){
var self = this
var; top = "#zong_qiyi";
$(top).find('#qiyi_control_panel').each(function(){
if ($(this).data('data')) $(this) .remove();
});
var line0 = $(top).find("#qiyi_control_panel");
$.each(qiyiList,function(index,item2){
$.each(qiyiList,function(index,item2){
var line1 = $(line0).clone();
$(line1).data('data',item2);//附加屬性data與資訊
$(line1).attr('id',index 1);
$(line1).find("#name").html(item2.name);
$(line1).find("#level").html(item2.level);
$(line1).find("#maxLevel").html(item2.maxLevel);
$(line1).find("#exp").html(item2.exp "/" item2.needExp) ;
$(line1).find("#desc1").html(item2.desc1);
$(line0).before(line1);
$(line1).show();
$(line1).find("#upgrade")
.on('click',function(event){
var table = $(this).parents('table:first');
var info = $(table).data('data');
self.clickToUpgradeQiyi(info, function(result){
if(!result.success){
alert(result.fail .desc1);
}else{
//alert(result.success.desc1);
growingPlugin.playerTopData();//改變attrs屬性
self.parent.trigger('refresh' );
}
});
});
});
},
//賦html值-
qiyiHtml1: function() {
var string = "
";
string = "
名稱: |
haoren_內功 |
";
string = "
目前等級: |
|
";
string = "
最大等級: |
|
";
string = "
exp: |
|
";
string = "
說明: |
|
";
string = "
| ";
string = "
";
$("#zong_qiyi").html(string);
},
//奇藝升級
clickToUpgradeQiyilick : function(info,callback) {
var query = "operation=upgradeQiyi";
query = "&qiyiName=" info.name;
toolsPlugin.play(query,callback);
},
//取得奇藝清單
getQiyiList: function(callback) {
var query = "operation=getQiyiList";
toolsPlugin.play(query,callback); >};