⑴ 如何设置让eclipse自动弹出web项目的主页,每次都要手写很麻烦
在web.xml中添加:
<!-- 项目启动后自动打开浏览器跳转到登录页 -->
<servlet>
<servlet-name>MyIndex</servlet-name>
<servlet-class>com.***.MyIndex</servlet-class>
<load-on-startup>1000</load-on-startup>
</servlet>
然后新建一个类
package com.***.servlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
/*
* 2017年10月9日 16:57:32
* by emcc
* 只用作项目启动后自动打开浏览器跳转到登录页
* */
@SuppressWarnings("serial")
public class MyIndex extends HttpServlet{
public MyIndex(){
super();
}
public void init() throws ServletException {
try {
Runtime.getRuntime().exec(new String[] { "C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe", "http://localhost:8080/***/" });
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
把对应的位置改成你自己的就行了,clean一下server 然后启动项目就跳转了
⑵ HTML实现跳转到页面指定位置
<a href="#ct1">跳转到词条1</a>
<a href="#ct2">跳转到词条2</a>
<br>
<div id="ct1" style="height:1000px;">词条1</div>
<div id="ct2">词条2</div>
底下定好容器的id,在a的href中用#+id,就可以实现跳转了。