我正在使用这个HOWTO用于MVC和Bootstrap模式
http://www.codeproject.com/Tips/826002/Bootstrap-Modal-Dialog-Loading-Content-from-MVC-Pa
$('body').on('click', '.modal-link', function (e) {
e.preventDefault();
$(this).attr('data-target', '#modal-container');
$(this).attr('data-toggle', 'modal');
});
这部分代码不适用于Bootstrap 2.3.2
$(this).attr('data-target', '#modal-container');
MVC Controller未执行。显示Just Empty Modal。在HOWTO中,他们使用的是Bootstrap 3.2但我无法升级到版本3.是否有针对此类问题的解决方法或解决方案?