Так на мой взгляд более симпатично смотрится.
jQuery(function($) {
var getCarInfo = function(id) {
if ( !id ) return;
$.getJSON('/Home/CarInfo/' + id, function(data) {
$('#carInfo').html(
"Модель: " + data.model + "<br/>" +
"Максимальная скорость: " + data.maxSpeed + "<br/>" +
"Разгон до 100 км/ч за" + data.acceleration + " сек<br/>"
);
});
};
$('.linkCarInfo').each(function() {
$(this).click(function() {
getCarInfo( $(this).data('num') );
});
});
});