再会。
我正在尝试使用 jQuery 从链接 ID 中提取序列号并使用 jQuery 附加它。
<a class="links" id="link_*serial number goes here*" href="google.com"> Google.com </a>
脚本是这样的
$('.links').append('<div>
<label> Check this box to remove this link:</label>
<input type="checkbox" id="delete_link_id'.parseInt($(this).attr("id"));.'></input></div>');
有什么建议么?