怎么获取某个网页上的js和css
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么获取某个网页上的js和css相关的知识,希望对你有一定的参考价值。
http://www.plimun.com/about-plimun/portfolio 就是这个页面中间的图片浏览功能,我怎么才能拿来自己用呢?很着急,希望有人帮一下,谢谢了。
在网页上右键菜单选择”查看源代码“,会出现新页面显示该网页源代码。一般js文件或css文件都在网页的头部<head>与</head>之间加载,为超链接形式,点击,会以新页面形式显示js文件或css文件的源代码,再右键菜单上选择”另存为“可以存到本地硬盘。也有js代码直接写在html源文件中的,直接选取复制,可粘贴到本地文件中去。 参考技术A 浏览器带的调试工具,比如chrome右键审查元素就可以看到结构了 参考技术B 拿下他的JS和CSS,还有HTML代码就成了<link href="/templates/yoo_balance/favicon.ico" rel="shortcut icon" type="image/x-icon" /> <link rel="stylesheet" href="/cache/widgetkit/widgetkit-51728441.css" type="text/css" /> <script type="text/javascript" src="/media/system/js/mootools.js"></script> <script type="text/javascript" src="/media/system/js/caption.js"></script> <script type="text/javascript" src="/media/widgetkit/js/jquery.js"></script> <script type="text/javascript" src="/cache/widgetkit/widgetkit-e4924dcb.js"></script> <!--[if lte IE 8]><link rel="stylesheet" href="/media/widgetkit/css/ie.css" /><![endif]--> <link rel="stylesheet" href="http://www.plimun.com/plugins/content/ja_tabs/ja_tabs.css" type="text/css" media="screen"/> <script type='text/javascript' src='http://www.plimun.com/plugins/content/ja_tabs/ja_tabs.js' charset="utf-8"></script>
<link rel="apple-touch-icon-precomposed" href="/templates/yoo_balance/apple_touch_icon.png" /> <link rel="stylesheet" href="/templates/yoo_balance/css/base.css" /> <link rel="stylesheet" href="/templates/yoo_balance/css/layout.css" /> <link rel="stylesheet" href="/templates/yoo_balance/css/menus.css" />
这几个下载下来,举个例子:这一句: <script type="text/javascript" src="/media/widgetkit/js/jquery.js"></script> 他的下载地址就是:
http://www.plimun.com/about-plimun/media/widgetkit/js/jquery.js
其它类推。
html代码直接右键查看源文件就有本回答被提问者和网友采纳
以上是关于怎么获取某个网页上的js和css的主要内容,如果未能解决你的问题,请参考以下文章