Jquery用#替换搜索表单中的空格

时间:2017-11-02 19:47:41

标签: jquery forms input replace keyup

想知道是否有人可以告知为什么这不起作用。

这个想法当用户在搜索表单上输入SPACE时,它被替换为#,,所以如果在搜索栏中键入“Red Boots size 9”,它将被替换为(#Doesnt get send to data ,它只是为了表演)#Red#boots#size#9

        $("#s").keyup(function () {
            var textValue = $(this).val();
            textValue =textValue.replace(/ /g,"#");
            $(this).val(textValue);
        });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <form role="search" method="get" id="searchform" class="searchform" action="http://tag2.testsiteonline.co.uk/"> 
        <label class="screen-reader-text" for="s">Search for:</label> 
        <input type="text" value="" name="s" id="s" /> 
        <input type="submit" id="searchsubmit" value="Search" /> 
    </form>

主管代码

<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Magnific Popup core CSS file -->
<link rel="stylesheet" href="magnific-popup/magnific-popup.css">
 <link rel="stylesheet" href="/fonts/styles.css">

<!-- jQuery 1.7.2+ or Zepto.js 1.0+ -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="http://tag2.testsiteonline.co.uk/searchjs.js"></script>
<!-- Magnific Popup core JS file -->
<script src="magnific-popup/jquery.magnific-popup.js"></script>
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

    <?php wp_head(); ?>
</head>

同样在我的searchjs.js上 - 这就是我在那里的一切?我之前或之后应该有什么吗?

$("#s").keyup(function () {
        var textValue = $(this).val();
        textValue =textValue.replace(/ /g,"#");
        $(this).val(textValue);
    });

1 个答案:

答案 0 :(得分:0)

您的代码运行正常,这是一个证明的问题:http://jsfiddle.net/zez7w74d/

<head>内容发布到您正在加载js文件的位置,以检查可能的中断。

编辑: 从wordpress中删除所有手动加载的jQuery,因为wordpress根据他们的开发页面附带jQuery:https://premium.wpmudev.org/blog/adding-jquery-scripts-wordpress/

并像这样调用你的jQuery代码:

jQuery("#s").keyup(function () {
        var textValue = $(this).val();
        textValue =textValue.replace(/ /g,"#");
        $(this).val(textValue);
});