object.insertAdjacentElement(sWhere, oElement)在一个制定的位置插入一个元素

在一个临近的指定的位置插入一个元素.

语法:

oElement = object.insertAdjacentElement(sWhere, oElement)
 参数:

sWhere  必需. 指出插入的位置, 用下名的值:
beforeBegin 在目标元素的外部开头位置. <i><o>..</o>
afterBegin  在目标元素的内部开头位置. <o><i>..</o>
beforeEnd  在目标元素的内部结束位置. <o>..<i></o>
afterEnd  在目标元素的外部结束位置. <o>..</o><i> 
 
oElement 必需. 要插入的元素du.

Return Value

返回插入的元素对象.

备注

You cannot insert text while the document is loading. Wait for the onload event before attempting to call this method.
当document加载的时候,你不可以插入一个文本。在尝试调用这个方法之前,会等待载入事件结束。

If you try to insert an object that already exists on the page, the existing object will be moved to the point that you specified in the insertAdjacentElement method; no new object will be created.
如果你试图插入一个存在的对象,那么现存的对象将要移动到你指定的地方,不再重新创建一个对象。

Example
例子

This example uses the insertAdjacentElement method to add a new list item to an ol object.

HideExample

<SCRIPT>
function fnAdd()
{
var oNewItem = document.createElement("LI");
oList.children(0).insertAdjacentElement("BeforeBegin",oNewItem);
oNewItem.innerText = "List Item 0";
}
</SCRIPT>
:
<BODY>
<OL ID = "oList">
<LI>List Item 1</LI>
<LI>List Item 2</LI>
<LI>List Item 3</LI>
</OL>
<INPUT TYPE = "button" VALUE = "Add Item" οnclick="fnAdd()">
</BODY>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fanhgye

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值