程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP 自定義標記符庫

JSP 自定義標記符庫

編輯:關於JSP

What is 標記符?(標准化越來越近了):namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

標記符分兩類,有體標記符,無體標記符

<tagName attributeName=”someValue” attributeName1=””/>

<img src="/edu/UploadPic/2008-2/2008229133140972.gif"/>

有體標記符是成對的.
標記符庫的組件

 

1.      標記處理器:a Java class file

2.      標記符庫描述符文件(TLD): a xml(標准化越來越近了) file (Struts-html, struts-bean, struts-logic,structs-template)

3.      web.xml(標准化越來越近了)

4.      jsp(SUN企業級應用的首選) 頁面的聲明

 

Struts 程序使用標記庫
1.On jsp(SUN企業級應用的首選) page:

<%@  taglib uri=”/web-inf/struts-html.tld” prefix=”html”%>

2.On web.xml(標准化越來越近了) :
<taglib>

<taglib-uri>/web-inf/struts-html.tld</taglib-uri>

</tablib>

 

Struts

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved