您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript中如何實(shí)現(xiàn)文本左對(duì)齊的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇JavaScript中如何實(shí)現(xiàn)文本左對(duì)齊文章都會(huì)有所收獲,下面我們一起來看看吧。
方法:1、利用setAttribute(),語法“元素對(duì)象.setAttribute("style","text-align:left")”;2、利用textAlign屬性,語法“元素對(duì)象.style.textAlign="left";”。
本教程操作環(huán)境:windows7系統(tǒng)、javascript1.8.5版、Dell G3電腦。
JavaScript中實(shí)現(xiàn)文本左對(duì)齊
方法1:利用setAttribute()
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div{ border: 2px solid red; text-align: right; } </style> </head> <body> <div id="box">一個(gè)div元素</div><br /> <button onclick="replaceMessage()"> 讓文本左對(duì)齊</a> <script type="text/javascript"> function replaceMessage() { var div = document.getElementById("box"); div.setAttribute("style", "text-align: left;"); } </script> </body> </html>
setAttribute() 方法添加指定的屬性,并為其賦指定的值。如果這個(gè)指定的屬性已存在,則僅設(shè)置/更改值。
方法2:利用style對(duì)象的textAlign屬性
textAlign 屬性用于控制元素中文本的對(duì)齊方式,當(dāng)值設(shè)置為“l(fā)eft”則可把文本排列到左邊。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div{ border: 2px solid red; text-align: right; } </style> </head> <body> <div id="box">一個(gè)div元素</div><br /> <button onclick="replaceMessage()"> 讓文本左對(duì)齊</a> <script type="text/javascript"> function replaceMessage() { var div = document.getElementById("box"); // div.setAttribute("style", "text-align: left;"); div.style.textAlign="left"; } </script> </body> </html>
關(guān)于“JavaScript中如何實(shí)現(xiàn)文本左對(duì)齊”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“JavaScript中如何實(shí)現(xiàn)文本左對(duì)齊”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。