本文概述
- 按钮属性
- 例子
按钮属性
Attribute | 默认值 | Type | Description |
---|---|---|---|
rendered | true | Boolean | 它需要布尔值来指定组件的呈现。 |
Value | null | Object | 用于设置组件的值。 |
outcome | null | String | 它用于解决导航问题。 |
includeViewParams | false | Boolean | 是否在目标URI中包含页面参数 |
fragment | null | String | 要滚动到的目标页面的标识符。 |
disabled | false | Boolean | 它禁用按钮。 |
accesskey | null | String | 它指定访问键, 按下该访问键会将焦点转移到按钮。 |
dir | null | String | 它为不继承方向性的文本提供方向指示。 |
image | null | String | 这是按钮图标的样式类。 |
lang | null | String | 用于指定语言。 |
tabindex | null | Integer | 用于按跳位顺序设置位置。 |
title | null | String | 它提供了咨询工具提示信息。 |
href | null | String | 它用于直接链接资源以实现定位行为。 |
icon | null | String | 按钮的图标。 |
iconPos | left | String | 它提供了按钮图标的位置。 |
target | _self | String | 窗口目标。 |
escape | true | Boolean | 它定义标签是否将被转义。 |
disableClientWindow | false | Boolean | 禁用附加ClientWindow。 |
JSF文件
// button.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://xmlns.jcp.org/jsf/html"xmlns:p="http://primefaces.org/ui"xmlns:f="http://xmlns.jcp.org/jsf/core">
<
h:head>
<
title>
Button<
/title>
<
/h:head>
<
h:body>
<
p:button value="http://www.srcmini.com/Click here">
<
/p:button>
<
/h:body>
<
/html>
输出
文章图片
推荐阅读
- PrimeFaces CommandLink使用示例
- PrimeFaces CommandButton按钮用法
- 10.13 android输入系统_多点触摸驱动理论与框架
- 在 Android Studio 上实时调试数据库( SQLite )
- Appium·项目集成
- Android 桌面悬浮窗效果实现,仿360手机卫士悬浮窗效果
- Android 浮动按钮的伸缩效果
- Android 类似360悬浮窗口实现源码
- ApplicationContextAware接口的作用