当前位置:网站首页>Route jump: click the operation button of the list to jump to another menu page and activate the corresponding menu

Route jump: click the operation button of the list to jump to another menu page and activate the corresponding menu

2022-06-26 03:17:00 Small vegetable bird yard live

How to click the operation button

  // Handle button 
    handle(row){
     if(row.id=="1"){
      this.go('/yw/xmgl/xmgl/kgsq')
     }else{
      this.go('/yw/xmgl/xmgl/htps')
     }
    },

go Method

  go(path){
      const links = [...document.getElementsByTagName('a')];
      const a = links.find(a=>a.getAttribute("href")===path)
      if(a){
        a.click()
      }else{
        alert(" No corresponding link found ")
      }
    },
原网站

版权声明
本文为[Small vegetable bird yard live]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/177/202206260249288350.html