我目前正在使用以下代码将div附加到正文:
$("body").append('<div class="tooltip" id="op" style="position: absolute; z-index: 999; height: 16px; width: 16px; top:70px"><span>Test</span></div>');
我怎么能像上面那样做,但没有使用jQuery
?
答案 0 :(得分:3)
在纯Javascript中,它会更加冗长:
var div = document.createElement('div');
div.className = 'tooltip';
div.id = 'op';
div.style.cssText = 'position: absolute; z-index: 999; height: 16px; width: 16px; top:70px';
div.innerHTML = '<span>Test</span>';
document.body.appendChild(div);
&#13;
答案 1 :(得分:1)
我非常喜欢所有现代浏览器的insertAdjacentHTML方法 - 并且也支持旧版浏览器。
参考:http://updates.html5rocks.com/2011/08/insertAdjacentHTML-Everywhere
用法:
var html = '<div class="tooltip" id="op" style="position: absolute; z-index: 999; height: 16px; width: 16px; top:70px"><span>Test</span></div>';
document.body.insertAdjacentHTML('beforeend', html);
答案 2 :(得分:0)
你可以用DOM做很多事情!你可以用这种方式操作简单的html!
答案 3 :(得分:-1)
更简单的方法是
var t = document.createElement('div')
t.innerHTML = '<div class="tooltip" id="op" style="position: absolute; z-index: 999; height: 16px; width: 16px; top:70px"><span>Test</span></div>';
document.body.insertAdjacentElement("beforeend", t);
在此处阅读有关 insertAdjacentElement 的信息 - https://developer.mozilla.org/en-US/docs/Web/API/Element/insertAdjacentElement