9

我在 ie 中得到错误的 URL,但在 Firefox 和 chrome 中没有。

基本上,我有一个名为 text-search 的文本字段。我在 htaccess 中使用 jQuery 和 rewriterule 来内部重定向页面。我在本地主机上,所有文件都在一个名为 test 的文件夹中。

在 Firefox 和 chrome 中,如果您在文本搜索框中输入“hello”回车、“hi”回车和“goodbye”回车,您将获得正确的 URL

本地主机/测试/测试/你好

本地主机/测试/测试/嗨

本地主机/测试/测试/再见

分别。

在即你得到

本地主机/测试/测试/你好

本地主机/测试/测试/测试/喜

本地主机/测试/测试/测试/测试/再见

分别

这里的问题是“测试”是前置的。如何阻止这种情况在 ie 中发生。我在网上找不到这个问题的答案。

html和jquery代码

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Untitled Document</title>


        <base href="http://localhost/test/" />
        <script src="jQuery.js"></script>
        <script>
            $(document).ready(function(){
                $("#text-search").keyup(function(e){
                    if (e.keyCode == 13){
                        window.location.replace("testing/"+$('#text-search').val());
                    }
                })
            })
        </script>
    </head>

    <body>
        <input type='text' id='text-search'>
    </body>
</html>

.htaccess

Options +FollowSymLinks -MultiViews
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^testing/(.+)$ /test/testing.php?string=$1 [L]

你能帮我解决这个问题吗?非常感谢

4

3 回答 3

13

如果你这样设置:window.location.href = '/yourpage'

它将附加网址。为了避免这种使用,//而不是/

所以它看起来像:window.location.href = '//yourpage'

于 2016-11-01T21:23:13.083 回答
12

window.location不是字符串,我会非常小心地使用它 - 它实际上是一个Location对象。

也许这会帮助你:

var href = window.location.href;
window.location = href.replace(/testing\/.*$/, "testing/"+$('#text-search').val());

你也可以这样做:

var href = "" + window.location;

强制字符串转换和按值传递。

于 2013-10-04T16:16:30.867 回答
1

考虑 url 栏中的 currenturl 是www.theunusualcards.com/marketing

我们将考虑两种情况

第一的 **window.location = 'dummy-string'**

第二 **window.location = '/another-dummy-string'**

然后在第一种情况下,它将进一步附加到 URL,而在第二种情况下,它将替换URL 中的路径名(即/marketing)。

于 2019-03-27T13:17:05.573 回答