js代码
<script type="text/javascript" src="js/jquery.min.js"></script> <!--使用高版本jquery请调用jquery-migrate-1.2.1.min.js,低版本可不用--> <script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script> <script type="text/javascript" src="js/jquery-maphilight.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $.fn.maphilight.defaults = { fill: true, fillColor: 'ff8c19', fillOpacity: 0.7, stroke: true, strokeColor: 'ff8b19', strokeOpacity: 1, strokeWidth: 3, fade: true, alwaysOn: false, neverOn: false, groupBy: false } $("#map_image").maphilight(); var btn = $(".mapBtn"); var map = $(".mapPath"); btn.click(function() { map.hide(); $(this).next().show(); }); }); </script>