?? textarea.jsp
字號(hào):
<%-- -- WebWork, Web Application Framework -- -- Distributable under LGPL license. -- See terms of license at opensource.org -- -- -- textarea.jsp -- -- Required Parameters: -- * label - The description that will be used to identfy the control. -- * name - The name of the attribute to put and pull the result from. -- Equates to the NAME parameter of the HTML INPUT tag. -- * cols - Width of the textarea. Equates to the COLS parameter of -- HTML tag TEXTAREA. -- * rows - Height of the textarea. Equates to the ROWS parameter of -- HTML tag TEXTAREA. -- -- Optional Parameters: -- * labelposition - determines were the label will be place in relation -- to the control. Default is to the left of the control. -- * disabled - DISABLED parameter of the HTML TEXTAREA tag. -- * readonly - READONLY parameter of the HTML TEXTAREA tag. -- * onkeyup - onkeyup parameter of the HTML TEXTAREA tag. -- * tabindex - tabindex parameter of the HTML TEXTAREA tag. -- * onchange - onkeyup parameter of the HTML TEXTAREA tag. -- --%><%@ taglib uri="webwork" prefix="webwork" %><%@ include file="controlheader.jsp" %><textarea name="<webwork:property value="parameters['name']"/>" cols="<webwork:property value="parameters['cols']"/>" rows="<webwork:property value="parameters['rows']"/>" <webwork:property value="parameters['disabled']"> <webwork:if test="parameters['disabled'] == true">disabled="disabled"</webwork:if> </webwork:property> <webwork:property value="parameters['readonly']"> <webwork:if test="parameters['readonly'] == true">readonly="readonly"</webwork:if> </webwork:property> <webwork:property value="parameters['onkeyup']"> <webwork:if test=".">onkeyup="<webwork:property value="."/>"</webwork:if> </webwork:property> <webwork:property value="parameters['tabindex']"> <webwork:if test=".">tabindex="<webwork:property value="."/>"</webwork:if> </webwork:property> <webwork:property value="parameters['onchange']"> <webwork:if test=".">onchange="<webwork:property value="."/>"</webwork:if> </webwork:property> <webwork:property value="parameters['id']"> <webwork:if test=".">id="<webwork:property value="."/>"</webwork:if> </webwork:property>><webwork:property value="parameters['nameValue']"/></textarea>
<%@ include file="controlfooter.jsp" %>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -