作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这其实不是问题。我只是觉得我需要与所有难以在 Ninja Forms 文本区域字段中获得占位符的人分享这个小魔法。
所以,基本上您需要做的是将以下代码添加到您的 header.php 文件中的 head
部分,然后更改文本区域的 ID 并选择您的占位符文本。
<script type="text/javascript">
jQuery(document).ready(function($){
$('#yourTextareaID').attr("placeholder","Your placeholder value");
});
</script>
希望这可以帮助您节省一些时间。你可以稍后再感谢我。
最佳答案
使它适用于任何文本区域的一种方法是将文本区域的默认值设置(以忍者形式)为您想要的占位符,然后在页面加载时,获取每个文本区域的内容textarea,将其添加到占位符属性,然后删除内容:
$(document).ready(function() {
// Remove textarea content and add placeholder
$("textarea").each(function() {
var $this = $(this);
$this.attr("placeholder", $this.val());
$this.val("");
});
});
关于forms - 提示 : How to add placeholder to textarea in Ninja Forms Wordpress plugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29816579/
我是一名优秀的程序员,十分优秀!