gpt4 book ai didi

javascript - 将 jquery 代码从定位值更改为链接

转载 作者:行者123 更新时间:2023-12-03 11:04:20 26 4
gpt4 key购买 nike

嗨,我得到了这个带有下拉列表的 html 代码,我在其中选择蓝色或绿色选项,它与下面的 jquery 配合得很好。

<select id="styleSelect">
<option value="styleblue">Blue</option>
<option value="stylegreen">Green</option>
</select>

jquery

  $("#styleSelect").change(function() {
updateStyleSheet($(this).val());
});

我的问题是如何将此代码更改为可点击的链接而不是选项值,我现在 html 代码应该是这样的

<div id="styleSelect">
<a href="styleblue">click here</a>
<a href="stylegreen">click here</a>
</div>

但是 jquery 应该是什么样子呢?

最佳答案

$("#styleSelect a").click(function(e) {
e.preventDefault();
updateStyleSheet($(this).attr('href'));
});

关于javascript - 将 jquery 代码从定位值更改为链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27932232/

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