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.
我处于需要为加载网站的窗口命名的情况。就像,当我打开 StackOverflow.com 时,我应该能够给它一个 window.name 以便我以后可以使用它。
这里有什么解决方案吗?谢谢。
你可以使用这样的东西
$("html").addClass("myclass");
将来您可以使用此类找到正确的窗口
$("html").hasClass("myclass").something
或者如果你想使用 jQuery,你可以这样做:
$('title').text("My Title");
我认为您正在寻找:
document.title
这既可读又可写。