<script src="/////scripts/js></script>
除了如上边那种用多个父路径外还有没有别的方法直接获取项目跟路径。获取项目根目录
在jsp里去<%=requestgetContextPath()%>这就是项目的根路径了,是到项目这层的。
js的引入方法如下:
<script src="<%=requestgetContextPath() %> /home/testjs"></script>
css的引入方法:
<link href="<%=requestgetContextPath() %>/css/onecss" rel="stylesheet" type="text/css">。/js获取项目根路径,如: >
getRootPath:function () {
//获取当前网址,如: >
var cur>
//获取主机地址之后的目录,如: /ems/Pages/Basic/Personjsp
var pathName = windowdocumentlocationpathname;
var pos = cur>
//获取主机地址,如: >
var localhostPath = cur>
//获取带"/"的项目名,如:/ems
var projectName = pathNamesubstring(0, pathNamesubstr(1)indexOf('/') + 1);
return(localhostPath + projectName);
Js获取高度:
网页可见区域高:documentbodyclientHeight
网页可见区域高:documentbodyoffsetHeight (包括边线的宽)
网页正文全文高:documentbodyscrollHeight
网页被卷去的高:documentbodyscrollTop
屏幕分辨率的高:windowscreenheight
屏幕可用工作区高度:windowscreenavailHeight
只能抓取静态的页面源代码,因为很多事件和样式是动态绑定和执行的,所以不可能获取到执行完后的代码的。
public
String
getHtmlContent(String
htmlurl)
{
URL
url;
String
temp;
StringBuffer
sb
=
new
StringBuffer();
try
{
url
=
new
URL(htmlurl);
BufferedReader
in
=
new
BufferedReader(new
InputStreamReader(urlopenStream(),
"gbk"));
while
((temp
=
inreadLine())
!=
null)
{
sbappend(temp);
}
inclose();
}
catch
(final
MalformedURLException
me)
{
megetMessage();
}
catch
(final
IOException
e)
{
eprintStackTrace();
}
return
sbtoString();
}
以上就是关于html页面中怎么获取项目根目录,及引入js和css全部的内容,包括:html页面中怎么获取项目根目录,及引入js和css、css获取整个页面高度、java如何获取带有css js 执行完后的网页源代码等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)