如何在Jquery中执行文档就绪方法

时间:2018-06-18 13:55:11

标签: jquery

我是否可以知道如何使用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

感谢有人可以帮助我。

1 个答案:

答案 0 :(得分:-1)

$(document).ready(function () {
    ...your code...
});