我有一个在Firefox中运行但在Safari中不运行的jquery函数...单击动态生成的下拉值时,该函数会执行某些操作:
$("body").on("click","option.second", function(){
var option = $(this).val();
switch(option)
{
case "Edit":
edit_fund($(this));
break;
case "Switch":
switch_fund($(this));
break;
case "End":
end_fund($(this));
break;
case "Delete":
delete_fund($(this));
break;
}
});
有人可以帮忙吗?