這裡說的是IHTMLElement的insertAdjacentHTML方法
原型:insertAdjacentHTML(string where,string html)
http://msdn.microsoft.com/zh-cn/vsto/hh870012
where: 指定插入html標籤語句的地方,有四種值可用:
1.beforeBegin: 插入到標籤開始前
2.afterBegin:插入到標籤開始標記之後
3.beforeEnd:插入到標籤結束標記前
4.afterEnd:插入到標籤結束標記後