>  기사  >  웹 프론트엔드  >  JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법

JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법

青灯夜游
青灯夜游원래의
2022-02-08 11:32:224973검색

방법: 1. setAttribute()를 사용합니다. 구문은 "element object.setAttribute("style","text-align:left")"입니다. 2. textAlign 특성을 사용합니다. 구문은 "element object.style입니다. textAlign="왼쪽" ;".

JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법

이 튜토리얼의 운영 환경: Windows 7 시스템, JavaScript 버전 1.8.5, Dell G3 컴퓨터.

JavaScript에서 텍스트 왼쪽 정렬 구현

방법 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">一个div元素</div><br />
		<button onclick="replaceMessage()"> 让文本左对齐</a>

			<script type="text/javascript">
				function replaceMessage() {
					var div = document.getElementById("box");
					div.setAttribute("style", "text-align: left;");
				}
			</script>

	</body>
</html>

JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법

setAttribute() 메서드를 사용하여 지정된 속성을 추가하고 지정된 값을 할당합니다. 지정된 속성이 이미 존재하는 경우 값은 설정/변경만 됩니다.

방법 2: 스타일 개체의 textAlign 속성을 사용합니다.

textAlign 속성은 요소의 텍스트 정렬을 제어하는 ​​데 사용됩니다. 값을 "왼쪽"으로 설정하면 텍스트를 정렬할 수 있습니다. 왼쪽.

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			div{
				border: 2px solid red;
				text-align: right;
			}
		</style>
	</head>

	<body>
		<div id="box">一个div元素</div><br />
		<button onclick="replaceMessage()"> 让文本左对齐</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>

JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법

【관련 추천: 자바스크립트 학습 튜토리얼

위 내용은 JavaScript에서 텍스트의 왼쪽 정렬을 달성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.