Jquery jQTouch-它支持图像映射吗?

Jquery jQTouch-它支持图像映射吗?,jquery,jqtouch,imagemap,Jquery,Jqtouch,Imagemap,我正在创建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"

我正在创建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中似乎不起作用-有人对此有经验吗?

使用target=“\u 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>