|
@@ -26,12 +26,13 @@ func (node *Node) SetOuterHTML(str string) {
|
|
|
closeTag.token = ""
|
|
|
|
|
|
//use the token to insert str
|
|
|
- node.token = ""
|
|
|
+ node.token = str
|
|
|
node.Children = []*Node{}
|
|
|
|
|
|
- // build node
|
|
|
- tokList := GetTokenList(str)
|
|
|
- node = BuildTree(tokList, node)
|
|
|
+ // rebuild parent
|
|
|
+ tokList := GetTokenList(node.Parent.InnerHTML())
|
|
|
+ node.Parent.Children = []*Node{}
|
|
|
+ node.Parent = BuildTree(tokList, node.Parent)
|
|
|
}
|
|
|
|
|
|
func (node *Node) InnerHTML() string {
|
|
@@ -47,10 +48,9 @@ func (node *Node) InnerHTML() string {
|
|
|
}
|
|
|
|
|
|
func (node *Node) SetInnerHTML(str string) {
|
|
|
- tokList := GetTokenList(str)
|
|
|
node.Children = []*Node{}
|
|
|
- document := BuildTree(tokList, node)
|
|
|
- node.Children = document.Children
|
|
|
+ tokList := GetTokenList(str)
|
|
|
+ BuildTree(tokList, node)
|
|
|
}
|
|
|
|
|
|
func (node *Node) QuerySelector(str string) *Node {
|