1 个回答

在模版里面放这么复杂的逻辑是不提倡的,一般复杂逻辑放在方法中,然后用事件调用方法。

   //模版
   <span (click)="openlink">下载点击按钮</span>

  //ts 
  //打开链接方法
  openlink(): void {
    const os = 'android/ios';
     if (os === 'android'){
         //
         location.href = 'andriod 跳转链接 ';
     }else if (os === 'ios')(
       location.href = 'ios 跳转链接 ';
     )else{
      location.href = '其他链接 跳转链接 ';
     }
  }
   
   

如果事件监听放在a标签,阻止一下默认行为。

如果答案对你有帮助,希望采纳

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题