tengo este código:¿Puedo envolver un evento javascript en un evento jQuery?
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$('a.one').click(function(event){
event.preventDefault();
});
});
function test(event){
event.preventDefault();
}
</script>
<style type="text/css">
a.test { font-weight: bold; }
body { font-family:sans-serif; background-color:#AAAAAA;}
</style>
</head>
<body>
<a class="one" href="http://jquery.com/">jQuery</a>
<br/>
<a class="two" href="http://stackoverflow.com/" onclick='test(event)'>stack overflow</a>
</body>
</html>
La prueba de función no funciona tal como está ahora, desde un evento JavaScript regular no admite el evento jQuery preventDefault-función. ¿Hay alguna forma de ajustar un evento regular de JavaScript en un evento jQuery para que pueda usar, por ejemplo, ¿PrevenirDefault?
Esto le da acceso a algunos métodos, pero no es un evento JQuery "normal" ... Por ejemplo, no puede usar: $ .Event (e) .which –
$ .Event (e) implementa preventDefault, stopPropagation, y stopImmediatePropagation. https://github.com/jquery/jquery/blob/master/src/event.js#L664 –