如何在源代码html中显示自定义标记的属性ID

时间:2014-04-09 23:14:44

标签: jquery html jsp tld custom-tag

我有一个使用tld文件的自定义标记,我的标记的主要作用是在jsp中创建一个表。

标签名称是util:table和util:tld文件中的列我声明了这个标签(表和列)和一些属性以及(id,type,name)但是当我点击网页查看源代码时html不显示属性和id。

我需要显示该属性,因为我需要使用jQuery从表和列中调用id来在确定列中创建工具提示。

如何解决这个问题?

在我的源代码标记下面:

    <tag>
    <name>coluna</name>
    <tag-class>br.si.util.tags.ColunaTag</tag-class>
    <body-content>JSP</body-content>
    <description>Create table</description>
    <attribute>
        <name>title</name>
        <required>true</required>
        <rtexprvalue>false</rtexprvalue>
        <type>String</type>
        <description>title</description>
    </attribute>
    <attribute>
        <name>property</name>
        <required>true</required>
        <rtexprvalue>false</rtexprvalue>
        <type>String</type>
        <description>property</description>
    </attribute>
    <attribute>
        <name>width</name>
        <required>false</required>
        <rtexprvalue>false</rtexprvalue>
        <type>String</type>
        <description>width</description>
    </attribute>
    <attribute>
        <name>type</name>
        <required>false</required>  
        <rtexprvalue>false</rtexprvalue>
        <type>String</type>
        <description></description>
    </attribute>
    <attribute>
        <name>id</name>
        <required>false</required>  
        <rtexprvalue>true</rtexprvalue>
        <type>String</type>
        <description></description>
    </attribute>

    <attribute>
        <name>styleClass</name>
        <required>false</required>  
        <rtexprvalue>false</rtexprvalue>
        <type>String</type>
        <description>styleClass</description>
    </attribute>
    <attribute>
        <name>hidden</name>
        <required>false</required>  
        <rtexprvalue>false</rtexprvalue>
        <type>boolean</type>
        <description>hidden</description>
    </attribute>
    <attribute>
        <name>nowrap</name>
        <required>false</required>  
        <rtexprvalue>true</rtexprvalue>
        <type>boolean</type>
        <description>nowrap</description>
    </attribute>

</tag>

0 个答案:

没有答案