'相關辅宜單考籍連接"></a
document.querySelector('[alt]').alt = '检测重复表述';
// 自动替换重复表述
document.querySelectorAll('[data-repeat]').forEach(element => {
element.innerText = element.dataset.repeatAlternative;
});
// 段落长度控制到5行以内
document.querySelectorAll('section p').forEach(p => {
while (getTextHeight(p) > 5) {
const lastChild = p.lastChild;
if (!lastChild) break;
if (lastChild.nodeType !== Node.TEXT_NODE) {
if (lastChild.nextElementSibling) {
addChildAfter(p, lastChild);
}
lastChild.remove();
}
}
});
function getTextHeight(element) {
const height = parseInt(window.getComputedStyle(element, null).getPropertyValue('height'));
return Math.round(height / parseFloat(window.getComputedStyle(element, null).getPropertyValue('line-height')));
}
function addChildAfter(parent, child) {
if (parent.lastElementChild.nextSibling && parent.lastElementChild.nextSibling.nodeType === Node.TEXT_NODE) {
const prevText = parent.lastElementChild.nextSibling;
// Join the text nodes if they are next to each other
parent.insertBefore(document.createTextNode(prevText.textContent + child.textContent), prevText.nextSibling);
prevText.remove();
} else if (parent.lastElementChild && parent.lastElementChild.nodeType === Node.TEXT_NODE) {
// Append text to the previous text node
parent.lastElementChild.textContent += child.textContent;
} else if (parent.childElementCount === 0 || !parent.firstElementChild.nodeType === Node.TEXT_NODE || !parent.firstElementChild.textContent.trim()) {
parent.appendChild(child);
} else {
// Split the first text node and insert the new element
let prevTextRemainder = "";
if (parent.firstElementChild.nodeType === Node.TEXT_NODE && parent.firstElementChild.textContent.trim()) {
prevTextRemainder = parent.firstElementChild.textContent.slice(0, -getTextHeight(parent));
parent.insertBefore(document.createTextNode(prevTextRemainder + child.textContent.replace(/^[^Srn]+|[^Srn]+$/g, "")), parent.firstChild.nextSibling);
child.remove();
} else if (!parent.firstChild.nextElementSibling || !(parent.firstChild.nextElementSibling.nodeType !== Node.TEXT_NODE)) {
parent.insertBefore(child.cloneNode(true), parent.firstChild.nextElementSibling);
child.remove();
};
}
}
})
window.onload = function() {
//智能标题生成逻辑...
};
<div style=display:flex; color:fff; background-color:007bff; font-size:16px; padding-left:15px; padding-right:15px;padding-top:5px;padding-bottom:5px;border-radius:5;margin-bottom:auto;margin-top:auto;height:auto;margin-left:auto;margin-right:auto;width:max-content;text-align:center align-items:center justify-content:flex-start!important;}
${repeatContent}${alternativeContent}${alternativeContentInCondition}${conditionCheck}${innerTextOfTargetHtml}
</div'}
>>