1
這是代碼。我只想使用php POST獲取imagemap中的區域值,但它返回null我應該怎麼做?如何在使用POST提交後獲取imagemap中的值
<?php
if(isset($_POST["part"]))
{
$part=$_POST["part"];
echo "<script> alert('".$part."') </script>";
}
?>
<form action="" name="form" method="POST">
<img name="newmale" class="mapper" src="newmale.png" width="261" height="548" id="newmale" usemap="#m_newmale" alt="" /><map name="m_newmale" id="m_newmale">
<area shape="poly" class="noborder icolor00ff00"coords="114,29,122,309" nohref onClick="form.submit();" name="part" value="Head"title="Head" alt="Head" />
</form>
你能給我一個模式嗎? –