2007年11月11日日曜日

i-mode用xhtmlでページ内リンクを使用するとき

  1. <!DOCTYPE html PUBLIC "-//i-mode group (ja)//DTD XHTML i-XHTML(Locale/Ver.=ja/1.0) 1.0//EN" "i-xhtml_4ja_10.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3.     <head>  
  4.         <meta http-equiv="content-type" content="application/xhtml+xml; charset=Shift_JIS" />  
  5.         <title>aaa</title>  
  6.     </head>  
  7.     <body>  
  8.         <p>  
  9.             <a href="#a1">anchor1</a>  
  10.         </p>  
  11.         <p>  
  12.             <a id="a1" name="a1">着地点</a>  
  13.         </p>  
  14.         <hr />  
  15.         <p>  
  16.             <a href="#a2">anchor2</a>  
  17.         </p>  
  18.         <p>  
  19.             <a id="a2">これだけでもO.K.</a>  
  20.         </p>  
  21.     </body>  
  22. </html>