导航:首页 > 编程语言 > 404跳转到首页代码

404跳转到首页代码

发布时间:2024-09-02 16:12:49

1. 请问js代码如何将网页状态码设置为404,从而返回404页面内容

js可以直接去获取html,有一点要注意,需要通过http服务来访问才行,不让会有Failed to load错误。

<!doctypehtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
<scripttype="text/javascript"src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<scripttype="text/javascript">
$(function(){
/*$('#goto404').click(function(){
$(document).find('body').html('404');
});*/
//第二种方法使用ajax-get
$("#goto404").click(function(){
$.get("404.html",function(htmls){alert(htmls)
$(document).find('body').html(htmls);
});
});
})
</script>
</head>
<body>
<inputtype="button"id="goto404"value="404">
<divid="scroll_div">
<divid="scroll_begin">
<ul>
<li>11111111</li>
<li>222222</li>
<li>3333</li>
<li>444444</li>
<li>55555555</li>
</ul>
</div>
</div>
<divid="scroll_end"></div>
</body>
</html>
阅读全文

与404跳转到首页代码相关的资料

热点内容
数据线插联想电脑哪里 浏览:934
手机文件传送到u盘后还占内存 浏览:753
制作专业网站注意什么 浏览:449
微盘上传视频显示文件不存在 浏览:309
苹果怎么清理appstore购买记录 浏览:187
iso怎么提取视频文件 浏览:336
求苹果好玩的手游 浏览:703
测量员app如何连rtk 浏览:638
微信红包不显示数字 浏览:367
怀孕日历表app 浏览:217
腾讯云数据产品有哪些 浏览:276
装win10系统的u盘文件系统 浏览:150
光遇云野设计编程是什么 浏览:649
word页码1212 浏览:128
如何把微信图片转换为Pdf文件格式 浏览:325
京东升级企业账号密码忘了怎么办 浏览:341
安卓角色扮演破解游戏 浏览:510
怎么插入一个表里数据 浏览:726
ae设置代理文件下载 浏览:638
电脑上有哪些弹钢琴的app 浏览:279

友情链接