gpt4 book ai didi

javascript - 我可以在 jQuery 事件中包装 javascript 事件吗?

转载 作者:可可西里 更新时间:2023-11-01 02:35:27 24 4
gpt4 key购买 nike

我有这个代码:

<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>

测试函数现在无法正常工作,因为常规 javascript 事件不支持 jQuery 事件 preventDefault 函数。有什么方法可以在 jQuery 事件中包装一个常规的 javascript 事件,这样我就可以使用例如防止违约?

最佳答案

试试这个:

function test(e) {
$.Event(e).preventDefault();
}

Event object

关于javascript - 我可以在 jQuery 事件中包装 javascript 事件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1796079/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com