h:outputScript标记渲染类型为“script"的HTML元素,类型为“text/javascript"。
此标记将外部JavaScript文件添加到JSF页面。
以下JSF标记
<h:outputScript library="js" name="help.js" />
被渲染为以下HTML代码。
<script type="text/javascript" src="/helloworld/javax.faces.resource/help.js.jsf?ln=js"></script>
以下代码来自common.js。
document.write("www..cn");
下面的代码来自UserBean.java。
package cn..common; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean(name="user") @SessionScoped public class UserBean{ }
以下代码来自demo.xhtml。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html"> <h:head></h:head> <h:body> <h:outputScript library="js" name="common.js" target="head" /> </h:body> </html>下载 OutputScript.zip
将生成的WAR文件从目标文件夹复制到Tomcat部署文件夹,并运行Tomcat-Install-folder/bin/startup.bat。
Tomcat完成启动后,在浏览器地址栏中键入以下URL。
http://localhost:8080/simple-webapp/demo.xhtml
JSF教程 -JSF验证字符串长度示例f:validateLength标记用于验证字符串值的长度。我们可以使用f:validateLength标签,如下所示。f:...
JSF教程 -JSF DataTable行号示例以下代码显示如何向DataTable添加行号。例子以下代码来自demo.xhtml。?xml version=1.0 encoding...
JSF教程 -JSF ActionListener示例我们可以处理用户点击事件为h:commandButton或h:link。要注册事件处理程序,我们可以传递UI Com...
JSF教程 -JSF角色示例以下代码显示了如何在JSF应用程序中检查用户角色。例子以下代码来自demo.xhtml。?xml version=1.0 encoding...
JSF教程 - 基于JSF Bean的导航示例我们还可以在托管bean中定义一个方法来返回视图名称。下面的代码定义了一个名为NavigationCont...