Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当按钮提交表单(并更改页面上的数据)时,我都会尝试使用 ajax 刷新页面,但是它;不管用。我浏览了几个教程和 api,检查了我的语法,但我无法让它工作。你能看一下吗?更新本身在 2 种方法中调用成功,这些方法确实成功。更新本身的方法 update(ajax)。
提前致谢。
编辑:没有浏览器错误或任何东西。该页面根本不刷新。
您声明了 xmlhttp 并检查了请求对象的状态(不存在)。
if (request.readyState == 4 && request.status == 200) cont.innerHTML = request.responseText;}, false);
在上面的代码行中用 xmlhttp 替换请求。