gpt4 book ai didi

forms - 提示 : How to add placeholder to textarea in Ninja Forms Wordpress plugin

转载 作者:行者123 更新时间:2023-12-01 11:33:37 25 4
gpt4 key购买 nike

这其实不是问题。我只是觉得我需要与所有难以在 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/

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