⑴ 如何設置讓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,就可以實現跳轉了。