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.
在页面上有一些 div 元素,默认情况下我需要隐藏这些元素,直到提交表单并且用户重定向回同一页面,并在 URL 上附加了一个查询字符串 (?success=true)。
有人可以在这里帮忙吗?
$(document).ready(function () { $("div.show_on_success").toggle(document.URL.indexOf("success=true") !== -1); });
show_on_success如果页面 URL 中出现“success=true”,则此代码显示带有类的 div,否则隐藏它们。
show_on_success