私はJSで次のページを持っています。
<html>
<script language="Javascript" type="application/javascript">
function doDelete(myid)
{
if(confirm("Are you sure want to delete this Attendance?"))
{
window.location.href="AttDelete.asp?id="+myid;
}
}
</Script>
<body>
66
<a href="" onClick="doDelete(44)"> Delete</a>
</body>
</html>
Firefox では動作しますが、IE9 では次のエラーがスローされます。お知らせ下さい。
SCRIPT5007: プロパティ 'doDelete' の値が null または未定義であり、Function オブジェクトではありません
ありがとう