我使用此代码从javascript innerHTML获取以下字符串。
window.getSelection().anchorNode.parentNode.innerHTML;
输出是,
<input name="boxes[]" value="checkbox_1" id="box_1" type="checkbox">fgfg
如何从html字符串中获取复选框ID。
我需要从复选框中找出id值。
答案 0 :(得分:0)
不要获取innerHTML,而是获得你想要的元素。
window.getSelection().anchorNode.parentNode.getElementsByTagName('input')[0].id