gpt4 book ai didi

jquery - 有没有办法用jquery刷新页面而不执行location.reload()?

转载 作者:行者123 更新时间:2023-12-01 07:56:43 26 4
gpt4 key购买 nike

我有一个脚本可以检查两个或多个选项是否相似。如果它们相似,我会阻止提交该页面。它有效,但仅当我在显示警报消息后刷新页面时才有效。如果我选择了一个合适的选项,除非刷新页面,否则错误警报仍保留在内存中。

我想我可以执行“location.reload()”,但用户只能等待页面重新加载。我可以做些什么来刷新页面而不执行 location.reload() 吗?这是我的脚本:

$("#saveBtn").click(function () {

for (var x = 0; x < checkedindex.length; x++) {
var ind = checkedindex[x];

var dateofclass = $(".TextBoxDate:eq(" + ind + ")");
var timeofclass = $(".TextBoxTime:eq(" + ind + ")");
var classday = $("select[name='searchString']:eq(" + ind + ")");

classdate.push(dateofclass);
classtime.push(timeofclass);
dayofclass.push(classday);

var testString = (dayofclass[x].val() + classtime[x].val()).toString();


if (testString.indexOf(oldDateAndTime) == 0)//returns -1 if no match is found 0 means a match was found…. there are two or more of the same string
{
alert("Please make the correct selection");
return false;
}
oldDateAndTime = (dayofclass[x].val() + classtime[x].val()).toString();
}
});

最佳答案

以下是使用 javascript 重新加载页面的 535 种方法

http://www.phpied.com/files/location-location/location-location.html

关于jquery - 有没有办法用jquery刷新页面而不执行location.reload()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23821863/

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