var str = '<p>Just some <span>text</span> here</p>';
到 id 为 <div>
的
test
?(顺便说一句
div.innerHTML += str;
是不可接受的。)
AppendChild
(E) 比 Chrome 和 Safari 上的其他解决方案快 2 倍以上,
insertAdjacentHTML
(F) 在 Firefox 上速度最快。
innerHTML=
(B)(不要与
+=
(A) 混淆)是所有浏览器上第二快的解决方案,它比 E 和 F 方便得多。详情
function A() {
container.innerHTML += '<p>A: Just some <span>text</span> here</p>';
}
function B() {
container.innerHTML = '<p>B: Just some <span>text</span> here</p>';
}
function C() {
$('#container').append('<p>C: Just some <span>text</span> here</p>');
}
function D() {
var p = document.createElement("p");
p.innerHTML = 'D: Just some <span>text</span> here';
container.appendChild(p);
}
function E() {
var p = document.createElement("p");
var s = document.createElement("span");
s.appendChild( document.createTextNode("text ") );
p.appendChild( document.createTextNode("E: Just some ") );
p.appendChild( s );
p.appendChild( document.createTextNode(" here") );
container.appendChild(p);
}
function F() {
container.insertAdjacentHTML('beforeend', '<p>F: Just some <span>text</span> here</p>');
}
A();
B();
C();
D();
E();
F();
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
This snippet only for show code used in test (in jsperf.com) - it not perform test itself.
<div id="container"></div>
var child = document.createElement('div');
child.innerHTML = str;
child = child.firstChild;
document.getElementById('test').appendChild(child);
jsFiddle.
但是,尼尔的答案是一个更好的解决方案。
innerHTML
,然后通过
appendChild
将其所有子节点移动到您真正想要的位置。
var target = document.getElementById('test');
var str = '<p>Just some <span>text</span> here</p>';
var temp = document.createElement('div');
temp.innerHTML = str;
while (temp.firstChild) {
target.appendChild(temp.firstChild);
}
这可以避免清除
div#test
上的任何事件处理程序,但仍然允许您附加 HTML 字符串。
insertAdjacentHTML
。在 Firefox 8 之前的版本中,如果您的
Range.createContextualFragment
不包含
str
标签,您可以回退到使用
script
。如果您的
str
包含
script
标签,则需要在插入片段之前从
script
返回的片段中删除
createContextualFragment
元素。否则,脚本将运行。 (
insertAdjacentHTML
标记脚本不可执行。)
破解:
<script>
document.children[0].innerHTML="<h1>QUICK_HACK</h1>";
</script>
用例:
1:另存为.html文件并在chrome或firefox或edge中运行。 (IE不能用)2:在
实际行动: http://js.do/HeavyMetalCookies/quick_hack
细分评论:
<script>
//: The message "QUICK_HACK"
//: wrapped in a header #1 tag.
var text = "<h1>QUICK_HACK</h1>";
//: It's a quick hack, so I don't
//: care where it goes on the document,
//: just as long as I can see it.
//: Since I am doing this quick hack in
//: an empty file or scratchpad,
//: it should be visible.
var child = document.children[0];
//: Set the html content of your child
//: to the message you want to see on screen.
child.innerHTML = text;
</script>
我发帖的原因:
JS.do 有两个必备条件:
document.getElementById("list-input-email").insertAdjacentHTML('beforeend', '<div class=""><input type="text" name="" value="" class="" /></div>');
使用firstChild附加子项仅将第一个子项添加到innerHTML。例如,如果我们必须附加:
<p>text1</p><p>text2</p>
仅显示text1
这个怎么样:
通过附加子项将特殊标签添加到innerHTML,然后通过删除我们创建的标签来编辑outerHTML。不知道它有多聪明,但它对我有用 或者您可以将outerHTML更改为innerHTML,这样就不必使用函数replace
function append(element, str)
{
var child = document.createElement('someshittyuniquetag');
child.innerHTML = str;
element.appendChild(child);
child.outerHTML = child.outerHTML.replace(/<\/?someshittyuniquetag>/, '');
// or Even child.outerHTML = child.innerHTML
}
<div id="testit">
This text is inside the div
<button onclick="append(document.getElementById('testit'), '<button>dadasasdas</button>')">To div</button>
<button onclick="append(this, 'some text')">to this</button>
</div>
document.getElementById('test').innerHTML += str
最短 - 18 个字符(不要混淆 +=
(OP 提及)与
=
更多详细信息此处)
test.innerHTML=str
var str = '<p>Just some <span>text</span> here</p>';
test.innerHTML=str
<div id="test"></div>
"use strict"
try {
const fruits = new Map([["Banana",""],["Apples", ""], ["Orange"," "]]);
let text = "<h1>Fruits</h1>" + "<ul>";
fruits.forEach(function(value, key){
text += "<li>" + key + value + "<br>" + "</li>"
});
text +="</li> ";
document.getElementById('demo').innerHTML = text;
} catch(err){
document.getElementById('theError').innerHTML = err;
}