除重定向外,一切正常。如果我删除第二个脚本,则重定向有效。我需要做些什么才能让两者都工作吗?
<script>
function check_frame() {
if( top === self ) { // not in a frame
location.href = "https://xyz.any"; // either the frameset or an error.
}
}
</script>
<script>
function check_frame() {
if( top !== self ) { // in a frame
document.body.classList.add('framed');
}
}
</script>
<body onLoad="check_frame()">
</body>
<style>
body {
opacity: 0;
transition: opacity 2s ease-in;
}
body.framed {
opacity: 1;
}
</style>
HUH函数
相关分类