導航:首頁 > 編程語言 > js設置table寬度

js設置table寬度

發布時間:2023-09-26 04:01:01

❶ 求拖動改變table行高,列寬的js或者jquery

<!doctypehtml>
<htmllang="en">
<head>
<metacharset="utf-8"/>
<title>jQueryUIResizable-Defaultfunctionality</title>
<linkrel="stylesheet"href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
<scriptsrc="http://code.jquery.com/jquery-1.9.1.js"></script>
<scriptsrc="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<linkrel="stylesheet"href="/resources/demos/style.css"/>
<style>
#resizable{width:150px;height:150px;padding:0.5em;}
#resizableh3{text-align:center;margin:0;}
</style>
<script>
$(function(){
$("#resizable").resizable();
});
</script>
</head>
<body>
<divid="resizable"class="ui-widget-content">
<h3class="ui-widget-header">Resizable</h3>
</div>
</body>
</html>

可以下載一個jquery UI的插件,裡面有一個Resizable方法,不僅僅可以改變列寬,還可以行寬。

❷ 如何用 js 獲取table 或者其他塊狀標簽的 寬和高

以table為例,首先為其設計class或者id如:id為table
然後進入js中
定義一個對象
var table=document.getelementbyid("table")
這是獲取這個元素
然後寬和高
就是table.width
table.height

❸ 用js怎麼設置在table的cell里插入的textbox的寬度,也就是width值

row.cells[4].setAttribute("size","20")

❹ js獲取table中的td寬度並賦值到另一個table的td中,實現寬度對齊

給你說下思路,
document.getElementById("top").rows.length可以獲得top表的行數
document.getElementById("top").rows[0].cells.length可以獲得top表的第一行的列版數
document.getElementById("top").rows[0].cells[0].offsetWidth可獲得top表第一行第一列權的實際寬度,(注意,這個是只讀的!)

所以
for(var i=0;i<document.getElementById("top").rows[0].cells.length;i++)
{
document.getElementById("buttom").rows[0].cells[i].width=document.getElementById("top").rows[0].cells[i].offsetWidth;
}
希望對你有幫助!

❺ js中如何取到table中某一列的寬度

從欄位名稱看得出,寬度變化比較大的就是籍貫了,建議你將table的寬度設置成100%,然後裡面列不要設置寬度,讓其自適應.如果不想td中的文字換行,可以在CSS中控制:

td{white-space:nowrap}

如果要獲取寬度可以用以下js

<tablewidth="300"border="1">
<tr>
<td>firsttd</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<tdid="c2">td{white-space:nowrap}</td>
<td>&nbsp;</td>
</tr>
</table>
<scriptsrc="http://libs..com/jquery/2.0.0/jquery.min.js"></script>
<script>
alert($("tabletr:firsttd:eq(0)").width());//獲取tr第1列的寬度
alert($("#c2").width())//獲取指定ID的td寬度
</script>

❻ 如何設置HTML頁面自適應寬度的table

用jquery獲取瀏覽器實時的寬度,然後設置table寬度
<body onload="resize();" onresize="resize();">
<table>
<thead>
<th>col1</th>
<th>col2</th>
</thead>
<tbody>
<tr>
<td>我是帥哥</td>
<td>樓上說的很對</td>
</tr>
</tbody>
</table>

<script src="js/JQuery.min.js"></script> //別忘了引入內JQeury的js文件
<script>
function resize() {
var width = $(document).width() ; //獲取瀏覽器寬度
$("table").width(width) ; //設置容table寬度
}
</script>
</body>

閱讀全文

與js設置table寬度相關的資料

熱點內容
廣州寄文件去吉林多少錢 瀏覽:254
蘋果APP文件夾創建 瀏覽:903
黃米是什麼app 瀏覽:417
word如何插入一個新文件夾 瀏覽:357
word文件夾前面有個符號 瀏覽:350
把word轉換成語音 瀏覽:220
linuxfile文件 瀏覽:454
如何用網路打普通電話 瀏覽:463
linux進程打開的文件 瀏覽:134
新購u盤無法儲存文件 瀏覽:553
5s要不要升級ios93 瀏覽:926
小米手機助手怎麼關閉自動升級 瀏覽:24
外星人能不能升級到win10系統盤 瀏覽:652
加入java信任站點 瀏覽:486
好用的急救知識app 瀏覽:524
什麼是網路適配器驅動文件名 瀏覽:717
吉林文件箱多少錢 瀏覽:113
ae模板版本 瀏覽:204
手機qq步數功能在哪裡 瀏覽:721
c程序設計04737 瀏覽:403

友情鏈接