iPad的Safari没有自带的功能可以查看网页源代码,今天就教大家如何通过「书签」来查看源代码
教程
1、首先打开Safari浏览
2、随意收藏一个网页
3、先点击书签栏的「编辑」然后再点击刚刚那个书签
4、更改成你想要的名字,然后把「地址」改成下列代码
1 |
javascript:(function(){var a=window.open('about:blank').document;a.write('<!DOCTYPE html><html><head><title>Source of '+location.href+'</title><meta name="viewport" content="width=device-width" /></head><body></body></html>');a.close();var b=a.body.appendChild(a.createElement('pre'));b.style.overflow='auto';b.style.whiteSpace='pre-wrap';b.appendChild(a.createTextNode(document.documentElement.innerHTML))})(); |
5、点击这个书签,然后就可以看到网页的源代码啦!
总结
1、这个功能其实可以用在「所有浏览器」上
2、你在访问网页完成以后断网,再查看源代码是可以的
PS:最后一张是在iOS 7 Beta 2截图的
历史上的今天
2014年:给Linux创建SWAP交换分区(3条评论)