$(function () { bindAll(); }); function bindAll() { //相关下载 $(".support-list-part").on("mouseover", function () { $(this).find(".support-part-text .support-title").attr("style", "color:#1b78cf"); }); $(".support-list-part").on("mouseout", function () { $(this).find(".support-part-text .support-title").attr("style", "color:#3d3d3d") }); }