$('#editPersonal').popover({
trigger: 'click',
placement: 'bottom',
html: true,
content: function () {
var url = "/Profile/Edit"; // the url to the controller
var id = $(this).attr('data-id');
var res = "";
**return $.get(url + '/' + id, data)**
}
});
如何将 HTML 从 $.get 方法返回到 popover ? return $.get(url + '/' + id, data) is not working 缺少任何语法,或者这不是正确的方法?请帮忙。