如何在ionic3中使用jquery更改href属性值

时间:2018-02-20 13:50:59

标签: javascript jquery html5 typescript ionic3

我试图在我的ionic3项目中打开一个弹出窗口,我从我的数据库中获取预定义的模板数据,使用[innerHtml] iam绑定下面的模板

<div class="content_a" [innerHTML]="bindingContent"></div>

bindingContent将是这样的<a href="#"> Midhun </a>'

现在我点击Midhun标签,我在我的离子应用程序中打开一个弹出窗口,但是当我点击它时它会进入根页面。

我尝试过的是

$(".content_a a").each(function (index, el) {
 $(this).css('color', companyFactoryInfo.color);
 $(this).css('text-decoration', 'none');
 $(this).click(function (event) {
   if ($(this).attr('href') == "#") {
     event.preventDefault();
      $(this).text().replace('#', '')
      $(this).attr('href',$(this).attr('href').replace('#',''))
      // Here iam coding for to show popup
    }
  })
})

虽然iam更换标签也没有用,当我点击标签时它会进入根页面,任何人都请找出这个问题......,谢谢你

0 个答案:

没有答案