美文网首页
H5动态修改input的placeholder属性

H5动态修改input的placeholder属性

作者: 海贼王Lorrin | 来源:发表于2021-07-12 17:02 被阅读0次

    动态修改input占位内容颜色、字号、透明度等等属性

    <style type="text/css">

                        {

                            `

                                #betsInput::-webkit-input-placeholder {

                                    color: ’#333333;

                                    opacity: 1;

                                }

                                #betsInput::-moz-placeholder {

                                    color: ‘#333333;

                                    opacity: 1;

                                }

                                #betsInput::-ms-input-placeholder {

                                    color: ‘#333333;

                                    opacity: 1;

                                }

                            `

                        }

    </style>

    相关文章

      网友评论

          本文标题:H5动态修改input的placeholder属性

          本文链接:https://www.haomeiwen.com/subject/uafdpltx.html