zoukankan      html  css  js  c++  java
  • Form Tags >Form Tag Themes

    <!-- Example 1: -->
    <s:form
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" .... >
      ....
        <s:textfield label="Customer Name" tooltip="Enter the customer name" .... />
      ....
    </s:form>
    
    <!-- Example 2: -->
    <s:form
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" .... >
      ....
        <s:textfield label="Address"
             tooltip="Enter your address"
             tooltipDelay="5000" />
      ....
    </s:form>
    
    
    <-- Example 3: -->
    <s:textfield
           label="Customer Name"
           tooltip="One of our customer Details">
           <s:param name="tooltipDelay">
                500
           </s:param>
           <s:param name="tooltipIconPath">
                /myImages/myIcon.gif
           </s:param>
    </s:textfield>
    
    
    <-- Example 4: -->
    <s:textfield
             label="Customer Address"
             tooltip="Enter The Customer Address" >
             <s:param
                 name="tooltipDelay"
                 value="500" />
    </s:textfield>
    
    
    <-- Example 5: -->
    <s:textfield
             label="Customer Telephone Number"
             tooltip="Enter customer Telephone Number"
             tooltipDelay="500"
             tooltipIconPath="/myImages/myIcon.gif" />
    
    
  • 相关阅读:
    javascript基础学习(三)
    javascript基础学习(二)
    javascript基础学习(一)
    php base64_encode()函数
    php fsockopen()
    php parse_url()函数
    SPL 文件处理
    CSS position的absolute和relative的解析[转]
    HTML demo
    php PDO setFetchMode
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/2992115.html
Copyright © 2011-2022 走看看