code.go 153 B

12345678
  1. package utils
  2. import "fmt"
  3. func ConcatCode(code string) string {
  4. // 拼接页面元素的js
  5. return fmt.Sprintf("(function(){return %s;})()", code)
  6. }