尝试使用Javascript将HTML元素插入另一个HTML元素

问题描述 投票:0回答:1

各位大家好,所以iam尝试使用Javascript将HTML元素插入另一个HTML元素。

我尝试使用.insertAdjacentHTML,但它将它插入目标元素附近,因为位置不适合我...而.html将其插入为文本格式而不是HTML格式

这是我尝试编码: -

   SendClientMessage(COLORS_.white, "15px", "none", '<div class="ls-files">' + CMDS_List + '</div>');
   function SendClientMessage(color, font, align = 'none', message)
   {
      if(align !== "none")
      {
         output_.insertAdjacentHTML('beforeend', '<p style="color: ' + color + '; font-size: ' + font + '; text-align: ' + align + ';">' + message + '</p>'); 
      }
      else if(align === "none")
      {
         output_.insertAdjacentHTML('beforeend', '<p style="color: ' + color + '; font-size: ' + font + ';">' + message + '</p>'); 
      }
   }

输出:-

<p style="color: #FFFFFF; font-size: 15px;"></p>
<div class="ls-files">clear,clock,dati,ping,uname,whoami,cmd,</div>
javascript jquery html format output
1个回答
1
投票

您只能使用insertAdjacentHTML将内联元素(如span或a)放入p标记中,因为它使用的html解析器在插入内容之前检查格式正确的html。

let CMDS_List = 'clear,clock,dati,ping,uname,whoami,cmd,';

SendClientMessage('white', "15px", "none", '<span class="ls-files">' + CMDS_List + '</span>');

function SendClientMessage(color, font, align = 'none', message) {
  let output_ = document.getElementById('output');
  if (align !== "none") {
    output_.insertAdjacentHTML('beforeend', '<p style="color: ' + color + '; font-size: ' + font + '; text-align: ' + align + ';">' + message + '</p>');
  } else if (align === "none") {
    output_.insertAdjacentHTML('beforeend', '<p style="color: ' + color + '; font-size: ' + font + ';">' + message + '</p>');
  }
}
  body {
  background: #999;
<div id="output"></div>
© www.soinside.com 2019 - 2024. All rights reserved.