<a href=’<c:url url=foo.jsp/>’ />
<a href=’<c:link url=foo.jsp/>’ />
<a href=’<c:url value=foo.jsp/>’ />
<a href=’<c:link value=foo.jsp/>’ />
第1题:
在本窗口打开超链接的代码是()
第2题:
创建一个位于文档内部位置的链接的代码是?()
第3题:
Which JSP standard action can be used to import content from a resource called foo.jsp?()
第4题:
Which JSTL code snippet can be used to import content from another web resource?()
第5题:
关于网页中的图像,下列说法正确的是()
第6题:
如何在新窗口打开链接?()
第7题:
框架中“禁止改变框架窗口大小”的语法是()
第8题:
Which the JSTL code snippet can be used to import content from another web resource?()
第9题:
Which two JSTL URL-related tags perform URL rewriting?()
第10题:
返回样式表的位置(URL),如果是内联样式表,则为null
以上都不对
返回样式表的位置(URL),如果是内联样式表,则为false
返回样式表的位置(URL),如果是内联样式表,则为true
第11题:
<jsp:import file=’foo.jsp’ />
<jsp:import page=’foo.jsp’ />
<jsp:include page=’foo.jsp’ />
<jsp:include file=’foo.jsp’ />
第12题:
url
link
param
import
redirect
第13题:
链接(Link)基本语法是()
第14题:
关于网页中的图像,下列说法正确的是()。
第15题:
HTML文件中用超级链接标记指向一个目标的基本格式为()。
第16题:
一个taglib指令必须有哪些属性?()
第17题:
CSSStyleSheet对象的href属性说法正确的是()。
第18题:
在框架页中的主框架中打开链接的代码是()
第19题:
Which JSTL code snippet can be used to perform URL rewriting?()
第20题:
All of your JSPs need to have a link that permits users to email the web master. This web application islicensed to many small businesses, each of which have a different email address for the web master. Youhave decided to use a context parameter that you specify in the deployment descriptor, like this: 42.
第21题:
<c:import page=*foo.jsp”/>
<c:include url=*foo.jsp”/>
<c:include page=*foo.jsp”/>
Importing cannot be done in JSTL. A standard action must be used instead.
第22题:
<c:import url=foo.jsp/>
<c:import page=foo.jsp/>
<c:include url=foo.jsp/>
<c:include page=foo.jsp/>
第23题:
<a href=’<c:url url=foo.jsp/>’ />
<a href=’<c:link url=foo.jsp/>’ />
<a href=’<c:url value=foo.jsp/>’ />
<a href=’<c:link value=foo.jsp/>’ />
第24题:
<a href=’mailto:${contextParam.webmasterEmail}’>contact us</a>
<a href=’mailto:${applicationScope.webmasterEmail}’>contact us</a>
<a href=’mailto:${contextInitParam.webmasterEmail}’>contact us</a>
<a href=’mailto:${initParam.webmasterEmail}’>contact us</a>