使用浏览器控制台添加元素

时间:2014-06-03 08:41:29

标签: javascript browser console

我正在尝试使用浏览器控制台在网页中添加元素。 我的元素是这样的:

<a class="myclass" role="myrole" href="/url.com">
<span class="Label">Hello World</span>
</a>

我该怎么做?

3 个答案:

答案 0 :(得分:1)

document.getElementById('myid').innerHTML = "<a class='myclass' role='myrole' href='/url.com'><span class='Label'>Hello World</span></a>";

您可以添加带有某个ID的虚拟div或标记,并使用此代码

HTML:

<div id="myid">

</div>

答案 1 :(得分:0)

function addElem(elem, text)
{

    var elem = document.createElement(elem),     // element to be created
        text = document.createTextNode(text);    // text node
        bd = document.body;    // get body

    elem.appendChild(text);   // elem appended with text
    bd.appendChild(elem);     // body appended with elem
    return elem;

}

将其称为:addElem('p', 'text here');

从控制台调用并查看:)

答案 2 :(得分:0)

自己试试

打开你的控制台,

var _el = '<a class="myclass" role="myrole" href="/url.com"><span class="Label">Hello World</span></a>';

$( '后的文本。')附加(_el);