searchautocomplete.jsp
来自「买书附带的光盘资料Foundations_Of_Ajax中文版教程及源代码。 」· JSP 代码 · 共 20 行
JSP
20 行
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://taconite.sf.net/tags" prefix="tac" %><tac:taconiteRoot> <tac:replaceChildren contextNodeID="popup" parseOnServer="true"> <c:forEach var="result" items="${results}"> <div onmouseover="hilite(this);" onmouseout="unhilite(this);"> <a href="${result.url}" class="autocomplete" target="_blank"> ${result.title} </a> </div> </c:forEach> </tac:replaceChildren> </tac:taconiteRoot>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?