将变量分配给一个选择器并使 last-child 在 javascript 中工作

Assign a variable to one selector and make last-child work in javascript

我想为$("#investigaciones)的选择器分配一个变量:

$("#investigaciones em:last-child").remove()
let investigaciones = $("#investigaciones);

找不到使 last-child 工作的方法:

investigaciones.lastChild('em:last-child').remove

使用原生JavaScriptquerySelector()方法:

let investigaciones = document.querySelector("#investigaciones");
investigaciones.querySelector("em:last-child").remove()
<div id="investigaciones">
  <em>
  1
  </em>
  <em>
  2
  </em>
</div>