jQuery或者js怎么判断在页面切换的时候改变页面的title 10
5个回答
2016-03-28 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
下面的代码可以达到你想要的效果,jquery与js都有涉及:
$().ready(function() {
var b, c, a = document.title;
"undefined" != typeof document.hidden ? (b = "hidden", c = "visibilitychange") : "undefined" != typeof document.mozHidden ? (b = "mozHidden", c = "mozvisibilitychange") :"undefined" != typeof document.webkitHidden && (b = "webkitHidden", c = "webkitvisibilitychange"), ("undefined" != typeof document.addEventListener || "undefined" != typeof document[b]) && document.addEventListener(c, d, !1);
function d() {
document.title = document[b] ? "你想要的title。。" : a
}
});
$().ready(function() {
var b, c, a = document.title;
"undefined" != typeof document.hidden ? (b = "hidden", c = "visibilitychange") : "undefined" != typeof document.mozHidden ? (b = "mozHidden", c = "mozvisibilitychange") :"undefined" != typeof document.webkitHidden && (b = "webkitHidden", c = "webkitvisibilitychange"), ("undefined" != typeof document.addEventListener || "undefined" != typeof document[b]) && document.addEventListener(c, d, !1);
function d() {
document.title = document[b] ? "你想要的title。。" : a
}
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是跳转页面,有标题的设置就直接显示的呀。title标签里面写上标题就好了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.addEventListener("visibilitychange", function(){
let tag = document.hidden || document.webkitHidden;
if(tag){ // 用户离开
}
})
参考: 网页链接
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>这里是网站标题</title>
</head>
<body>
<script type="text/javascript">
document.body.onfocus = function(){
document.title = '这里是网站标题';
};
document.body.onblur = function(){
document.title = 'i miss you';
};
</script>
</body>
</html>
<html>
<head>
<meta charset="UTF-8">
<title>这里是网站标题</title>
</head>
<body>
<script type="text/javascript">
document.body.onfocus = function(){
document.title = '这里是网站标题';
};
document.body.onblur = function(){
document.title = 'i miss you';
};
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>this is a test</title>
<script>
document.addEventListener('visibilitychange',function(){
if(document.visibilityState=='hidden') {
normal_title=document.title;
document.title='(づ ̄ 3 ̄)づ';
}
else
document.title=normal_title;
});
</script>
</head>
<body>
<p>very 66666!</p>
</body>
</html>
么么哒~~
<html lang="en">
<head>
<meta charset="UTF-8">
<title>this is a test</title>
<script>
document.addEventListener('visibilitychange',function(){
if(document.visibilityState=='hidden') {
normal_title=document.title;
document.title='(づ ̄ 3 ̄)づ';
}
else
document.title=normal_title;
});
</script>
</head>
<body>
<p>very 66666!</p>
</body>
</html>
么么哒~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询