真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

jquery編輯表格,jquery編輯器

jQuery操作table表格

一、數(shù)據(jù)準(zhǔn)備

成都創(chuàng)新互聯(lián)專(zhuān)注于孟村企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,商城網(wǎng)站建設(shè)。孟村網(wǎng)站建設(shè)公司,為孟村等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站建設(shè),專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)

二、操作

//1.鼠標(biāo)移動(dòng)行變色

$("#table1 tr").hover(function(){

$(this).children("td").addClass("hover")

},function(){

$(this).children("td").removeClass("hover")

})

$("#table2 tr:gt(0)").hover(function() {

$(this).children("td").addClass("hover");

}, function() {

$(this).children("td").removeClass("hover");

});

//2.奇偶行不同顏色

$("#table3 tbody tr:odd").css("background-color", "#bbf");

$("#table3 tbody tr:even").css("background-color","#ffc");

$("#table3 tbody tr:odd").addClass("odd")

$("#table3 tbody tr:even").addClass("even")

//3.隱藏一行

$("#table3 tbody tr:eq(3)").hide();

//4.隱藏一列

$("#table5 tr td::nth-child(3)").hide();

$("#table5 tr").each(function(){$("td:eq(3)",this).hide()});

//5.刪除一行

// 刪除除第一行外的所有行

$("#table6 tr:not(:first)").remove();

//6.刪除一列

// 刪除除第一列外的所有列

$("#table6 tr td:not(:nth-child(1))").remove();

//7.得到(設(shè)置)某個(gè)單元格的值

//設(shè)置table7,第2個(gè)tr的第一個(gè)td的值。

$("#table7 tr:eq(1) td:nth-child(1)").html("value");

//獲取table7,第2個(gè)tr的第一個(gè)td的值。

$("#table7 tr:eq(1) td:nth-child(1)").html();

//8.插入一行:

//在第二個(gè)tr后插入一行

$("插入3插入插入插入").insertAfter($("#table7 tr:eq(1)"));

//刪除指定行(第二行) $("#table3 tr:gt(0):eq(1)").remove();

(2)刪除列,比如刪除表格中的第二列:

//eq:獲取子元素索引從 0 開(kāi)始,先刪除表頭$("#table3 tr th:eq(1)").remove();//nth-child:獲取子元素從 1 開(kāi)始$("#table3 tr td:nth-child(2)").remove();

(3)刪除其它行,比如第二行之外的所有行:

$("#table3 tr:gt(0):not(:eq(1))").remove();

(4)刪除其它列,比如第二列之外的所有列:

//先刪除表頭$("#table3 tr th:not(:eq(1))").remove();$("#table3 tr td:not(:nth-child(2))").remove();

(5)隱藏行,比如隱藏第二行:

$("#table3 tr:gt(0):eq(1)").hide();//或者//$("#table3 tr:gt(0):eq(1)").css("display", "none")//顯示//$("#table3 tr:gt(0):eq(1)").css("display", "");

(6)隱藏列,比如隱藏第二列:

$("#table3 tr th:eq(1)").hide();

$("#table3 tr td:nth-child(2)").hide();

//或者

//$("#table3 tr th:eq(1)").css("display", "none");

//$("#table3 tr td:nth-child(2)").css("display", "none");

//顯示

//$("#table3 tr th:eq(1)").css("display", "");

//$("#table3 tr td:nth-child(2)").css("display", "");

jquery 獲取 table 總行數(shù):

$("table tr").size();

var hang = $("#g").find("tr").length;

jquery 獲取 table 總列數(shù):

$("table td").size();

var lie = $("#g").find("tr").find("td").length-1;

如何用jquery改變表格單元格的內(nèi)容

var td=$("#你這個(gè)單元格的id");//當(dāng)然了,這只是id選擇器去獲取標(biāo)簽對(duì)象,還有其他很多選擇器!

$(td).html("你要改變的內(nèi)容");

jQuery實(shí)現(xiàn)的可編輯表格完整實(shí)例

本文實(shí)例講述了jQuery實(shí)現(xiàn)的可編輯表格。分享給大家供大家參考,具體如下:

!DOCTYPE

HTML

PUBLIC

"-//W3C//DTD

HTML

4.01//EN"

""

html

head

meta

http-equiv="Content-Type"

content="text/html;

charset=utf-8"

title可編輯表格/title

script

type

=

"text/javascript"

src="jquery-1.7.2.min.js"/script

style

type

=

"text/css"

body{

background:#c0c0c0;

}

#tab{

border-collapse:collapse;

}

#tab

td{

width:50px;

height:18px;

border:1px

solid;

text-align:center;

}

/style

script

type

=

"text/javascript"

$(function(){

var

tds

=

$("#tab

tr

td");

editeTable(tds);

});

function

editeTable(tds){

tds.click(function(){

var

td=$(this);

var

oldText=td.text();

var

input=$("input

type='text'

value='"+oldText+"'/");

td.html(input);

input.click(function(){

return

false;

});

input.css("border-width","1px");

input.css("font-size","12px");

input.css("text-align","center");

input.css("width","0px");

input.width(td.width());

input.trigger("focus").trigger("select");

input.blur(function(){

td.html(oldText);

});

input.keyup(function(event){

var

keyEvent=event

||

window.event;

var

key=keyEvent.keyCode;

var

input_blur=$(this);

switch(key)

{

case

13:

var

newText=input_blur.val();

td.html(newText);

changeCurrConAttrByTable(currTableId);

break;

case

27://按下esc鍵,取消修改,把文本框變成文本

td.html(oldText);

break;

}

});

});

};

/script

/head

body

table

id

=

"tab"

tr

td1/tdtd1/tdtd1/tdtd1/tdtd1/td

/tr

tr

td1/tdtd1/tdtd1/tdtd1/tdtd1/td

/tr

tr

td1/tdtd1/tdtd1/tdtd1/tdtd1/td

/tr

tr

td1/tdtd1/tdtd1/tdtd1/tdtd1/td

/tr

tr

td1/tdtd1/tdtd1/tdtd1/tdtd1/td

/tr

/table

/body

/html

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《jQuery表格(table)操作技巧匯總》、《jQuery常用插件及用法總結(jié)》、《jquery中Ajax用法總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常見(jiàn)經(jīng)典特效匯總》、《jQuery動(dòng)畫(huà)與特效用法總結(jié)》及《jquery選擇器用法總結(jié)》

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。


網(wǎng)站題目:jquery編輯表格,jquery編輯器
瀏覽路徑:http://weahome.cn/article/dsdiehd.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部