Cody Joyce 1 month ago
parent
commit
081ab4ad93
1 changed files with 7 additions and 7 deletions
  1. 7 7
      gen/domquery/node.go

+ 7 - 7
gen/domquery/node.go

@@ -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 {