我想使用诸如 post-header-id-23 之类的值作为 el id 值。我只是要像这样使用jQuery:
$('#post-header-id-' + this.model.id).after(compiled_template);
但看起来事件并没有连接起来。有没有办法解决这个问题,以便 jQuery 选择器不会抑制普通选择器。或者,它看起来像:
el: $('#post-header-id' + this.model.id ),
但是我将如何在渲染函数中进行设置?还是我做错了什么?
谢谢