求救,不能理解的问题
<script language=vbscript>
Function DelRecord(Record_ID)
if isnumeric(Record_ID) then
if Confirm("你真的要删除吗?"&Record_ID)=true then
window.location.replace("DelOrder.asp?ID="&Record_ID)
end if
end if
End Function
</script>
<a href="vbscript:DelRecord(DD20040410)">删除</a>
1.为什么isnumeric(Record_ID)的结果为真??能够执行if内部的语句??
2.Confirm("你真的要删除吗?"&Record_ID)中怎么得不到Record_ID的值???