gpt4 book ai didi

javascript - 不使用 Jquery 隐藏和显示 Div

转载 作者:行者123 更新时间:2023-11-29 18:07:15 24 4
gpt4 key购买 nike

我想问一下是否可以修改我的代码以实现它目前在不使用 jquery 的情况下实现的相同目标。我将这段代码嵌入到共享点中,而我们公司在其中使用 jquery 变得很复杂。这是代码...

<html>
<head>
<style>
a,img { border: none; }
.comb {display: none;}
</style>
<script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"> </script>

</head>
<body>


<map name="FPMap0" id="FPMap0">
<area item="first" href="#" shape="polygon" coords="347, 79, 349, 201, 449, 248, 540, 204, 541, 82, 448, 34" />
<area item="second" href="#" shape="polygon" coords="560, 81, 562, 206, 660, 255, 756, 208, 758, 81, 659, 31" />
</map>

<img width="1000" height="667" src="main.png" usemap="#FPMap0" alt=""/>​

<div class="comb" id="first">t1</div>

<div class="comb" id="second">t2</div>


<script>
$('area').on('click',function() {
$('.comb').hide();
$('#' + $(this).attr('item')).show();
});
</script>
</body>
</html>

最佳答案

我已经给出了详细的步骤,这应该像您当前的源代码一样工作,但不使用 jQuery。

function toggle(){
//Get all elements with the class comb
var comb=document.getElementsByClassName('comb');
//Loop through all elements
for(var i=0; i<comb.length; i++){
//Hide all elements
comb[i].style.display='none';
}
// this = the element used to trigger/fire the function
// getAttribute("item") = item="something"
//Display element by ID
document.getElementById(this.getAttribute("item")).style.display='block';
}
// Run when Page is ready
window.onload=function(){
//Get all area elements
var area=document.getElementsByTagName('area');
for(var i=0; i<area.length; i++){
//Set event Listener
area[i].addEventListener('click',toggle,false);
}
}

如果您有任何问题,请在下方留言,我会尽快回复您。

希望对您有所帮助。编码愉快!

关于javascript - 不使用 Jquery 隐藏和显示 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30338982/

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