听起来您在寻找这个:
$.get('otherPage.html').then(function(responseData) { //responseData is the contents of the other page. Do whatever you want with it. $('#someElem').append(responseData);});现场演示(单击)。
$.get()是jQuery的简写方法
$.ajax()。http://api.jquery.com/jquery.ajax/



