帮助在我的搜索栏中输入内容时显示文本

时间:2019-05-07 作者:Dennis

当搜索表单中输入内容时,我在替换文本时遇到问题。如下图所示,我想用get_search_query 文本如果我正在搜索某个内容,如果没有搜索任何内容,则应显示“mijn gemeente”。

enter image description here

1 个回复
SO网友:Vishwa

可以使用jQueryfocus 作用将以下内容添加到php文件中<script> 标签。

$("#your-searchinput-id").focus(function() {
    $("h4.title_sidebarsub").text("<?php echo $string ?>")
});
$(this).blur(function() {
    $("h4.title_sidebarsub").text("mijn gemeente")
});

相关推荐

Search Results No Link

搜索结果页面未显示用户可以单击的链接。我需要标题作为链接。有人知道问题是什么吗?下面是我的搜索。php和内容。php代码。。。SEARCH.PHP <?php /** * The template for displaying Search Results pages * * @package WordPress * @subpackage Cornerstone * @since Cornerstone 3.0.0 */&#