0

jQTouch プロトタイプの作成に取り組んでおり、イメージ マップを使用したいと考えています。例:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

何らかの理由で、これは JQTOUCH で機能していないようです - 誰でもこれを経験したことがありますか?

4

1 に答える 1

1

target="_webapp" 属性を使用すると、機能するはずです...

そう:

<map name="planetmap">
  <area target="_webapp" shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
  <area target="_webapp" shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
  <area target="_webapp" shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>
于 2010-07-23T15:20:09.097 に答える