web-dev-qa-db-ja.com

jQueryはプレースホルダーのテキストの色を変更します

JQueryで「::-webkit-input-placeholder」を使用してプレースホルダーテキストの色を設定することは可能ですか?

このようなもの:

$("input::-webkit-input-placeholder").css({"color" : "#b2cde0"});
25
Benny

JavaScriptで擬似セレクターを実際に変更することはできません。既存のaを変更する必要があります <style>要素

可能であれば、クラスを作成します。

.your-class::-webkit-input-placeholder {
    color: #b2cde0
}

そして、要素に追加します:

 $('input').addClass('your-class');
52
Blender

スタイルシートがないで、CSSを挿入する場合動的にを使用できます。

$('body').append('<style>.my_class::placeholder{color:red}</style>')

プレースホルダにmy_classcolorを使用するだけです。

汎用機能を使用すると便利です。

function change_placeholder_color(target_class, color_choice) {
    $("body").append("<style>" + target_class + "::placeholder{color:" +  color_choice + "}</style>")
}

使用法

change_placeholder_color('.my_input', 'red')
1
Cybernetic

MaterializeCSSを使用していました。 Jqueryを使用して、このような入力フィールドのCSSを更新しました

  $(".input-field").css("color", themeColor);
  $(".input-field>.material-icons").css("color", themeColor);
  $(".input-field>label").css("color", themeColor);

結果を参照してください:

https://codepen.io/hiteshsahu/pen/EXoPRq?editors=10

0
Hitesh Sahu

これを追加してください。 input [type = text]:focus new colorの色を継承します

.your-class ::placeholder{ color: inherit;}
0
franku

JQueryを使用して擬似要素スタイルを動的に設定する例を次に示します。<style>要素を作成し、そのテキストコンテンツを目的のスタイル宣言に設定し、ドキュメントに追加するだけです。

簡単な単一ページの例を次に示します。

<!doctype html>                                                                                                                                                                 
<html>
    <head>
        <title>Dynamic Pseudo-element Styles</title>
        <script src="https://code.jquery.com/jquery-3.2.1.js"></script>
        <script> 
$(document).ready(function() {                      
    createStyles();
    $('#slider-font-size').on('change', createStyles);

    function createStyles() {
        // remove previous styles
        $('#ph-styles').remove();

        // create a new <style> element, set its ID
        var $style = $('<style>').attr('id', 'ph-styles');

        // get the value of the font-size control
        var fontSize = parseInt($('#slider-font-size').val(), 10);

        // create the style string: it's the text node
        // of our <style> element
        $style.text(
            '::placeholder { ' +
                'font-family: "Times New Roman", serif;' +
                'font-size: ' + fontSize + 'px;' +
            '}');

        // append it to the <head> of our document
        $style.appendTo('head');
    }   
});     
        </script>
    </head>      

    <body>       
        <form>
            <!-- uses the ::placeholder pseudo-element style in modern Chrome/Firefox -->   
            <input type="text" placeholder="Placeholder text..."><br>

            <!-- add a bit of dynamism: set the placeholder font size -->
            <input id="slider-font-size" type="range" min="10" max="24">
        </form>
    </body>      
</html> 
0
Chris Stringer