gpt4 book ai didi

javascript - 访问 jQuery 返回值

转载 作者:行者123 更新时间:2023-11-28 19:15:21 24 4
gpt4 key购买 nike

我正在尝试访问返回的值并添加 .contains 检查,以便我知道是否需要重新加载页面。我一直在尝试做如下的事情:

alert(msg.d);
if(msg.d.contains("deleted"))
location.reload();

返回的对象是一个字符串。

它确实向我显示了警报消息,但在必要时不会重新加载页面。我做错了什么吗?

最佳答案

没有.contians()方法,您需要使用String.prototype.indexOf()

The indexOf() method returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex. Returns -1 if the value is not found.

代码

if(msg.d.indexOf("deleted") > -1)
location.reload();

关于javascript - 访问 jQuery 返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29973237/

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