📄 600e3903359d001b14c3fa48fd947afa
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link href="CSS/styleClass.css" rel="stylesheet" type="text/css" />
<title>添加CD</title>
</head>
<body>
<f:view>
<jsp:include flush="true" page="head.html"></jsp:include>
<h3>
输入 CD 的详细信息
</h3>
<br />
<h:panelGrid columns="2" rowClasses="">
<h:outputText value="专辑名称" />
<h:inputText value="#{cdBean.cd.specialTitle}"></h:inputText>
<h:outputText value="艺术家" />
<h:inputText value="#{cdBean.cd.artist}"></h:inputText>
<h:outputText value="价格" />
<h:inputText value="#{cdBean.cd.price}"></h:inputText>
</h:panelGrid>
<h:commandButton action=""></h:commandButton>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -