gpt4 book ai didi

jquery - 在使用 jquery 样式的选择框上应用跳转菜单功能

转载 作者:行者123 更新时间:2023-12-01 02:50:27 24 4
gpt4 key购买 nike

我正在使用this script在选择框上应用样式。作为独立版本它工作得很好。

但我还需要在此选择框上应用跳转菜单功能。我尝试添加一个函数,但两个脚本之间似乎存在一些冲突。 jquery样式和跳转菜单功能不能同时协同工作。

你能帮我解决这个问题吗?这是一个示例代码,可让您了解我在这里处理的内容:

<script type="text/javascript">
$(document).ready(function() {
$('#jumpMenu').selectbox({debug: true});

function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
});
</script>

<select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('parent',this,0)">
<option value="http://www.link1.com">link1</option>
<option value="http://www.link2.com">link2</option>
<option value="http://www.link3.com">link3</option>
</select>

最佳答案

关于:

$("#jumpMenu").change(function(e) {
window.location.href = this.options[this.selectedIndex].value;
});

甚至

$("#jumpMenu").change(function(e) {
url = this.options[this.selectedIndex].value;
$("#output").load(url);
});

关于jquery - 在使用 jquery 样式的选择框上应用跳转菜单功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2220267/

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