jQuery function的正确书写方法 - Web前端
作者:98wpeu发布时间:2026-07-24分类:网页前端技术浏览:1
导读:JQuery正确的书写格式:引入:<scriptsrc="/libs/jQuery/jquery.JS"type="text/javascript"></s...
JQuery 正确的书写格式:
引入:<script src="/libs/jQuery/jquery.JS" type="text/javascript"></script>
html写法:
复制代码 代码如下:
<HTML>
<head>
<metahttp-eqUIv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="modules-js/qiyi.js"></script>
<script>
$(function() {
qiyiPlugin.init($("#zong_qiyi"));
});
</script>
</head>
<div id="zong_qiyi">
//XXXXXXXXXXXXXX
</div>
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.qiyiHtml1();//重新覆盖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){
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.parentNode.trigger('refresh');
}
});
});
});
},
//赋html值-
qiyiHtml1: function() {
var string = "<table id='qiyi_control_panel' class='table table-bordered table-hover' style='display:none; width:500;'>";
String += "<tr><td>名称:</td><td id=name>haoren_内功</td></tr>";
string += "<tr><td>当前等级:</td><td id=level></td></tr>";
string += "<tr><td>最大等级:</td><td id=maxLevel></td></tr>";
string += "<tr><td>exp:</td><td id=exp></td></tr>";
string += "<tr><td>描述:</td><td id=desc1></td></tr>";
string += "<tr><td><button id='upgrade' class='BTn btn-link'>升级</button></td></tr>";
string += "</table>";
$("#zong_qiyi").html(string);
},
//奇艺升级
clickToUpgradeQiyi: 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);
},
};
引入:<script src="/libs/jQuery/jquery.JS" type="text/javascript"></script>
html写法:
复制代码 代码如下:
<HTML>
<head>
<metahttp-eqUIv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="modules-js/qiyi.js"></script>
<script>
$(function() {
qiyiPlugin.init($("#zong_qiyi"));
});
</script>
</head>
<div id="zong_qiyi">
//XXXXXXXXXXXXXX
</div>
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.qiyiHtml1();//重新覆盖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){
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.parentNode.trigger('refresh');
}
});
});
});
},
//赋html值-
qiyiHtml1: function() {
var string = "<table id='qiyi_control_panel' class='table table-bordered table-hover' style='display:none; width:500;'>";
String += "<tr><td>名称:</td><td id=name>haoren_内功</td></tr>";
string += "<tr><td>当前等级:</td><td id=level></td></tr>";
string += "<tr><td>最大等级:</td><td id=maxLevel></td></tr>";
string += "<tr><td>exp:</td><td id=exp></td></tr>";
string += "<tr><td>描述:</td><td id=desc1></td></tr>";
string += "<tr><td><button id='upgrade' class='BTn btn-link'>升级</button></td></tr>";
string += "</table>";
$("#zong_qiyi").html(string);
},
//奇艺升级
clickToUpgradeQiyi: 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);
},
};
相关推荐
- jQuery .attr()和.removeAttr()方法操作元素属性示例 - Web前端
- JQuery判断子iframe何时加载完成解决方案 - Web前端
- 实测jquery data()如何存值 - Web前端
- jquery特效 幻灯片效果示例代码 - Web前端
- jquery 快速回到页首的方法 - Web前端
- JQuery为页面Dom元素绑定事件及解除绑定方法 - Web前端
- jquery实现输入框动态增减的实例代码 - Web前端
- JQuery-tableDnD 拖拽的基本使用介绍 - Web前端
- 解析Jquery中如何把一段html代码动态写入到DIV中(实例说明) - Web前端
- JQuery设置和去除disabled属性的5种方法总结 - Web前端
- 网页前端技术排行
-
- 1[Web前端]用javascript实现默认图片替代未显示的图片 - Web前端
- 2分析Iconfont-阿里巴巴矢量常用图标库 - Web前端
- 3【第六章】Foundation之按钮和下拉功能 - Web前端
- 4基于jquery的滚动条滚动固定div(附演示下载) - Web前端
- 5jQuery实例教程:制作网页中可折叠的面板 - Web前端
- 6jQuery编写widget的一些技巧分享 - Web前端
- 7jQuery实现鼠标移到元素上动态提示消息框效果 - Web前端
- 8在Mac/PC上远程调试iPhone/iPad上的网页 - Web前端
- 9分享精心挑选的12款优秀jQuery Ajax分页插件和教程 - Web前端
- 最近发表
-
- WordPress随机显示特色图片插件:Random Post Thumbnails
- KeePass实现Chrome浏览器自动填充密码方法一
- LNMP一键包nginx 301强制跳转到https教程
- KeePass实现Chrome浏览器自动填充密码方法二
- #建站# 免费的VPS管理软件Xshell8/Xftp8中文版下载
- 使用Xshell 8连接VPS教程_电脑登录vps的方法
- WordPress评论界面添加烟花????效果
- 不同浏览器书签同步方案:坚果云+Floccus_详细使用教程
- iOS端KeePassXC客户端APP:Strongbox Password Safe
- 给WordPress评论中的Gravatar头像图片添加ALT属性


