JavaScript에서 CSS 변수를 사용하여 자리 표시자 색상을 동적으로 업데이트하려면 어떻게 해야 합니까?

Mary-Kate Olsen
풀어 주다: 2024-11-14 15:11:02
원래의
964명이 탐색했습니다.

How Can I Dynamically Update Placeholder Color with CSS Variables in JavaScript?

Updating Placeholder Color with CSS Variables in Javascript

JavaScript lacks a direct method for modifying placeholder color. However, CSS variables can be utilized to achieve this effect.

HTML Code:

<input type="text" placeholder="Placeholder" />
<button onclick="update()">Change Placeholder Color</button>
로그인 후 복사

CSS Code:

::placeholder {
  color: var(--placeholder-color, red);
}
로그인 후 복사

Javascript Code:

function update() {
  const placeholderColor = document.querySelector('#color-picker').value;
  const input = document.querySelector('input[type=text]');

  input.style.setProperty("--placeholder-color", placeholderColor);
}
로그인 후 복사

In this script, the update() function retrieves the selected color from a color picker element and sets the value of the CSS variable --placeholder-color in the text input element. By referencing this variable in the CSS, the placeholder color is dynamically updated when the button is clicked.

Note:

  • Be sure to include a color picker element in your HTML to enable users to select the new placeholder color.
  • Using this technique, you can target specific placeholders by assigning unique CSS class names to the respective input elements.

위 내용은 JavaScript에서 CSS 변수를 사용하여 자리 표시자 색상을 동적으로 업데이트하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿