假定场景:左边的表格id为:lefttab,右边表格id为righttab,向右按钮id:toright,向左按钮id:toleft,可以移动的行都在表格的tbody中(防止将表头也给移动喽)
为黄浦等地区用户提供了全套网页设计制作服务,及黄浦网站建设行业解决方案。主营业务为网站设计、成都网站制作、黄浦网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
$(function () {
$("#toright").click(function () {//向右按钮点击事件
$.each($("#lefttab tbody tr"), function (i, n) {//遍历左侧table的tr,判断是否有选中的行
if ($(this).find("input[type=checkbox]").attr("checked") == true) {//如果是选中的行
$(this).insertAfter($("#righttab tbody tr:last"));强行插入(别多想,此插入非彼插入)右侧table最后一行的下方
}
});
});
$("#toleft").click(function () {//向左按钮点击事件
$.each($("#righttab tbody tr"), function (i, n) {
if ($(this).find("input[type=checkbox]").attr("checked") == true) {
$(this).insertAfter($("#lefttab tbody tr:last"));
}
});
});
});
script
$(document).ready(function(){
$("#hide").click(function(){
if($("#left").css('width') == '200px'){
$("#left").animate({width:0},"slow");
$("#hide").val('显示');
}else{
$("#left").animate({width:200},"slow");
$("#hide").val('隐藏');
}
});
});
/script
div id="left" style="width:200px; background-color:#009900; float:left;" /div
div id="right" style="width:400px; background-color: #FF0000; float:left;" /div
div style="float:left"
input id="hide" type="button" value="隐藏" /
/div
1、新建一个html文件,命名为test.html。
2、在test.html文件内,使用div标签创建一行文字,文字内容为“小明”。
3、在test.html文件内,设置div标签的id属性为mytext,主要用于下面通过该id获得div对象。
4、在test.html文件内,使用button标签创建一个按钮,按钮名称为“切换内容”。
5、在test.html文件中,给button按钮绑定onclick点击事件,当按钮被点击时,执行func()函数。
6、在js标签中,创建func()函数,在函数内,通过id(mytext)获得div对象,通过html()方法获得div内的文本内容,使用if语句判断获得的文字内容是否为指定的文本内容,如果不是,则通过html()方法改变文本内容。
用jquery使一个按钮让div左右移动方法如下:
就是点击“#anniu”,然后"#caozuo"div左右移动,我的代码左移了就不能移动回来了 div class="bottom textstyle" id="caozuo" a href="#" id="anniu"img src="jiantou2.png" width="20" id="tanchu" //a /div $(document).ready(function()... 就是点击“#anniu”,然后"#caozuo"div左右移动,我的代码左移了就不能移动回来了。
div class="bottom textstyle" id="caozuo"
a href="#" id="anniu"img src="jiantou2.png" width="20" id="tanchu" //a
/div
$(document).ready(function() {
$("#anniu").click(function(event){
event.preventDefault();
if($('#caozuo').is({right:'0em'})){
$('#caozuo').animate({right:'-8.5em'},"fast");}
else{
$('#caozuo').animate({right:'0em'},"fast");
}
});
});
jQuery是一套跨浏览器的JavaScript库,简化HTML与JavaScript之间的操作。由John Resig在2006年1月的BarCamp NYC上发布第一个版本。目前是由 Dave Methvin 领导的开发团队进行开发。全球前10000个访问最高的网站中,有59%使用了jQuery,是目前最受欢迎的JavaScript库。
!doctype html
html
head
meta charset="utf-8"
title右键/title
script type="text/javascript" src=""/script
script type="text/javascript"
$(document).ready(function() {
//阻止浏览器默认右键点击事件
$("ul li").bind("contextmenu", function(){
return false;
})
$("ul li").mousedown(function(e) {
//右键为3,
if (3 == e.which) {
alert("右键");
} else if (1 == e.which) {
//左键为1
alert("左键");
}
})
});
/script
/head
body
ul
li深圳网站建设/li
li独占网络/li
/ul
/body
/html