我想将函数的参数添加到字符串中(我不确定这是否正确)
function changeChart(form, chart, bar) {
//chart 2 (left)
$(form).change(function (){
console.log(form);
$(form + "option:selected").each(function(){
//rest of the function
我希望将表单添加到 Jquery 中的选择中。
这是正确的方法吗?