gpt4 book ai didi

javascript - Window.Location 在 IE 中不起作用?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:05:45 25 4
gpt4 key购买 nike

我整个下午都在想办法解决这个问题,但已经放弃了,现在求助于你们这些聪明的人来帮忙:)

我有以下 Jquery/Javascript 函数,它在 Chrome 中运行良好 - 但在 IE 中没有任何反应?

    $(".btnsubmitpost").click(function () {
var topicid = $(this).attr('rel');
var sbody = tinyMCE.get('txtPost').getContent();
$('.topicpostlistnewpost').remove();
$('.postsuccess').show();
$.post("/myurl/" + topicid + ".aspx",
{ "postcontent": sbody },
function (data) {
var returnUrl = $("value", data).text();
window.location.href = returnUrl;
return false;
});
return false;
});

我已经尝试过 window.location、window.location.href 两者都有完整的 url 和绝对的 url,但 IE 就是不喜欢它?有什么想法吗?

该函数只是从帖子中获取一个 Url,并且应该将用户重定向到该 Url。但就像我说的,在 Chrome 中工作正常,但在 IE 中不行(试过 IE8 和 IE9)

最佳答案

对于遇到同样问题的人来说,问题是因为 window.location 在 Ajax post 方法中。

只需将 window.location 替换为 function() ,然后调用 window.location 或在 Ajax 调用完成后执行此操作。

关于javascript - Window.Location 在 IE 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8809025/

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