我是否可以知道如何使用document.ready()执行该方法,因为此页面没有按钮,因此我希望在网站上运行时执行。我按照以下链接中的代码进行操作。我已经减少了一些代码。请参阅链接https://www.quaxio.com/html_white_listed_sanitizer/
function HtmlWhitelistedSanitizer(escape, tags, css, urls) {
this.escape = escape;
this.allowedTags = tags;
this.allowedCss = css;
function runSanitizer() {
var parser = new HtmlWhitelistedSanitizer(true);
var sanitizedHtml = parser.sanitizeString(input.value);
output_as_string.textContent = sanitizedHtml;
output_as_node.innerHTML = sanitizedHtml;
}
source_code.innerText = html_whitelisted_sanitizer.innerText
感谢有人可以帮助我。
答案 0 :(得分:-1)
$(document).ready(function () {
...your code...
});