css和脚本可以加上绝对路径引用。比如说从cnblogs.com上抓下一个含有a.css的页面,把a.css替换为http://cnblogs.com/a.css,然后应该会容易不少?
来晚了,楼上正解,结合页面中 <link href="" rel="stylesheet" type="text/css" /> href="" 的值与其网址,能够引用到其CSS或JS脚本
例:如页面源文件中<link href="css/style.css" rel="stylesheet" type="text/css" /> 其网址为http://cnblogs.com
那引用页面中应该为<link href="http://cnblogs.com/css/style.css" rel="stylesheet" type="text/css" />