gpt4 book ai didi

javascript - 关闭(忽略)html 文本/搜索元素中的占位符属性

转载 作者:太空宇宙 更新时间:2023-11-04 12:49:11 25 4
gpt4 key购买 nike

如果可能,我希望能够从我的搜索框中打开/关闭占位符。

 <input type="text" placeholder="Enter name" />
<input type="search" placeholder="Type to search" />

到目前为止我尝试了什么:

input[type="search"]::-webkit-input-placeholder{
content: "";
color:red; /*test selector*/
}

JSFiddle http://jsfiddle.net/cqocxhzt/1/

最佳答案

使用 Angular 执行此操作的一种方法是:

在 Controller 中:

$scope.placeholder_value1 = ""; //empty
$scope.placeholder_value2 = "some value"; //some value

在 View 中:

<input type="text" placeholder="{{placeholder_value1}}" />
<input type="text" placeholder="{{placeholder_value2}}" />

关于javascript - 关闭(忽略)html 文本/搜索元素中的占位符属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26262660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com