You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
155 B

  1. package jsruntime
  2. import "log"
  3. func (jr *JsRuntime) EnableCookieFun() {
  4. jr.runtime.Set("setInterval", func() {
  5. log.Println("禁用setInterval")
  6. })
  7. }