Href 模态重定向问题仅适用于 google chrome?

Href modal redirect problem only with google chrome?

<a href="#" class="btn btn-brand btn-elevate btn-icon-sm" data-toggle="modal" data-target="#contractFiltrModal">

顶部是我打开模式的按钮,但它一直将我重定向到# pages 而不是打开我的模式。此问题仅在 Google Chrome 中出现,但它在 Safari 等其他网络浏览器上完美运行。

如果我在我的按钮中删除 href="#",模式会工作但会出现错误 "Uncaught TypeError: Cannot read property 'replace' of null at HTMLAnchorElement."。

有解决办法吗?

试试。

<button type="button" class="btn btn-brand btn-elevate btn-icon-sm" data-toggle="modal" data-target="#contractFiltrModal">
  Button Name
</button>

Document