私は 2 つの php ページを持っています。1 つはテーブルを作成し、もう 1 つはグラフを作成しています。私の index.html ファイルは、それらの両方を呼び出し、誰かが画像をクリックするとメインページに表とグラフの両方を表示することになっています。このコードを使用しました
<div id="upload_target" ></div>
<div id="upload_target2" ></div>
<img src="image.png" alt="hello" usemap="#use" >
<map name="use">
<area shape="poly" coords="..." href="table.html" target="upload_target">
<area shape="poly" coords="..." href="graph.html" target="upload_target2">
</map>
したがって、ユーザーが area_1 テーブルをクリックすると、「upload_target」に表示され、area_2 をクリックすると、セクション「upload_target2」に表示されます。
しかし、私は両方の領域タグを 1 つだけにしたいので、彼が画像をクリックすると、両方が次のように表示されます。
<img src="image.png" alt="hello" usemap="#use" >
<map name="use">
<area shape="poly" coords="..." href="table.html" target="upload_target" href="graph.html" target="upload_target2">
</map>
それを行う方法はありますか?