Solution Mui a link failure

method one:

MUI ( 'body') ON ( 'TAP', 'A', function () {.
  IF (this.href) {// determines whether there is a link to
    the location.href = this.href;
  }
});

 

Method Two:

$('body').on('tap', 'a', function () {
  if(this.href){
    location.href = this.href;
  }
})

Guess you like

Origin www.cnblogs.com/beizhi666/p/10930545.html