gpt4 book ai didi

javascript - 错误 : ReferenceError: event is not defined

转载 作者:行者123 更新时间:2023-11-30 05:32:24 24 4
gpt4 key购买 nike

<分区>

请帮助编写以下代码。

我在 Firefox 和 IE 上收到“事件未定义”错误。

问题似乎与 event.preventDefault() 有关;

这个css只是关闭了下拉菜单

    <style type="text/css">
.dropdown {
display: none;
opacity: 0;
}
</style>

查询

自定义javascript

    <script type="text/javascript">

$( document ).ready(function(){

jQuery('.download-dropdown > a').click( function() {
event.preventDefault();
var $this=jQuery(this);
if (!$this.parent().hasClass('active')) {
var top=$this.parent().offset().top;
var left=$this.parent().offset().left;
jQuery('body').append($this.parent());
$this.parent().addClass('active');
$this.parent().css({ 'position': 'absolute',
'top': top,
'left': left,
'z-index': 999});
$this.parent().children('.dropdown').animate({ 'opacity': '1','height': 'toggle'});
$this.parent().animate({'height': '400'});
window.dropdown=$this;
}
else {
$this.parent().css({ 'position': 'relative',
'top': 'inherit',
'left': 'inherit',
'z-index': 1});
$this.parent().removeClass('active');
jQuery('article.contact-download > div > section > div').append($this.parent());
$this.parent().children('.dropdown').animate({ 'opacity': '0','height': 'toggle'});
$this.parent().animate({'height': '45'});
}

});



});

</script>

这是html

    <article class="contact-download" data-background-height="60">
<section data-speed="0">
<div>
<div class="download-dropdown" style="height: 60px; position: relative; z-index: 1; top: inherit; left: inherit; display: inline-table"> <a style="padding-left: 25px; text-decoration:none; " href="#">click to see more</a>
<div class="dropdown">
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
</div>
</div>
</section>
</article>

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