gpt4 book ai didi

javascript - 我需要压缩这个 javascript 代码

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

我需要获取下面的 javascript 代码才能使用以下任何链接:

<a href="#" class="example1">http://example.com</a>
<a href="#" class="test">Doesnt work now</a>

点击链接后显示的代码:

<div style='display:none'>
<div id='example1' style='padding:10px; background:#fff;'>
<a href="http://example.com" target="_blank">Link</a>
</div>
</div>

我需要压缩 javascript 代码以处理我提供的任何类/id 值:

<script>
$(document).ready(function(){
$(".example1").colorbox({width:"50%", inline:true, href:"#example1"});
$(".example2").colorbox({width:"50%", inline:true, href:"#example2"});
$(".example3").colorbox({width:"50%", inline:true, href:"#example3"});
$(".example4").colorbox({width:"50%", inline:true, href:"#example4"});
$(".example5").colorbox({width:"50%", inline:true, href:"#example5"});
});

最佳答案

$("[class^='example']").each(function() {
$(this).colorbox({width:"50%",
inline:true,
href:"#example" + $(this).attr("class").replace("example", "")
});
});

或者更简单:

$("[class^='example']").each(function() {
$(this).colorbox({width:"50%",
inline:true,
href:"#" + $(this).attr("class")
});
});

关于javascript - 我需要压缩这个 javascript 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6876115/

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