我有以下带有 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 对象
谢谢