No, no hace falta ningún código adicional. Debería funcionar como está.
De hecho, probé con una página de prueba como esta y funciona bien:
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <script type="text/javascript"> function confirma()
{
var agree = confirm("¿Realmente desea eliminarlo? ");
if (agree)
return true ;
else
return false ;}
<a href="http://www.google.com" onclick="return confirma()">Enlace
</a>