有没有办法缩短我的代码。我需要添加大约 15 个更多功能,它们都做同样的事情。
$(document).ready(function() {
$('.map-highligh').maphilight({
});
//north roll over
$('#hilightlink').mouseover(function(e) {
$('#north').mouseover();
}).mouseout(function(e) {
$('#north').mouseout();
}).click(function(e) { e.preventDefault(); });
//Wellington roll over
$('#hilightlink-wel').mouseover(function(e) {
$('#wellington').mouseover();
}).mouseout(function(e) {
$('#wellington').mouseout();
}).click(function(e) { e.preventDefault(); });
});