Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个选择列表框,我想在加载页面时选择列表值之一。我正在使用以下方法并且它有效:
$("#mySelect").find("option[value=3]").attr("selected",true);
用 var 替换 3 常量的最佳方法是什么?例如:
var myVar = 3;
这应该很容易,但我不明白。
您可以通过连接选择器将变量放入选择器。
现场演示
var myVar = 3; $("#mySelect").find("option[value="+myVar+"]").attr("selected",true);