时间:2021-07-01 10:21:17 帮助过:16人阅读
$(document).ready(function () {
if ($("#idAttachmentsTable") != null) {
$('#idAttachmentsTabletbody tr td').each(function ()
{
var href = $(this).find('a');
href.removeAttr("onclick");
href.attr("target", "_blank");
});
}
});
script>