⑴ js 有什麼辦法可以控制獲取的數字左對齊右對齊等。用 ts.write();
指望js在沒有任何css的支持下達到你說的效果,不靠普. 當然,想作總歸作得出來.
不過花精力在這個上面沒有必要吧. 用樣式控制一下就行了.
前端的東西分工挺明確的, 長像嘛就用css. 骨架就是html, js 是肌肉. 你懂的.
⑵ 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設置text中文本的對齊方式
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width:100px;
height:100px;
border:1px solid #000;
text-align:left;
}
</style>
</head>
<body>
<div id="div">52313</div>
<script>
(function(){
var o_div=document.getElementById("div");
o_div.style.textAlign="right";
})()
</script>
</body>
</html>
⑷ 在JS中如何給text-align賦值
HTML DOM 允許 javaScript 改變 HTML 元素的樣式,設置text-align樣式的代碼為:
obj.style.textAlign="left/right/center";
實例演示如下:
1、HTML結構
<divid="test">示例文字</div>
<inputtype="button"value="左對齊"onclick="fun1()">
<inputtype="button"value="居中"onclick="fun2()">
<inputtype="button"value="右對齊"onclick="fun3()">
2、javascript代碼
functionfun1(){
document.getElementById("test").style.textAlign="left";
}
functionfun2(){
document.getElementById("test").style.textAlign="center";
}
functionfun3(){
document.getElementById("test").style.textAlign="right";
}
3、效果演示