Mathjax 无法在基于 Ajax 的网页中工作

发布于 2024-12-15 14:06:57 字数 171 浏览 3 评论 0原文

我正在使用 Mathjax 在 PHP/Ajax 完成的 Web 应用程序中显示方程。首次加载页面时,方程会正确呈现。在同一页面中,当用户单击按钮时,ajax 代码会从数据库中获取一些数据并将其显示在同一页面上。但是,方程无法正确显示,相反,乳胶代码是这样显示的。但是如果我刷新页面,那么方程就会正确呈现。我该如何解决这个问题?

I'm using Mathjax to display equations in a web application done in PHP/Ajax. The equations are rendered correctly when the page is loaded first.In the same page, when user clicks a button, an ajax code works to fetch some data from database and display it on the same page.But, there the equations are not displaying correctly, instead the latex code is shown as such.But if i refresh the page, then the equations are rendered correctly.How can i solve this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仙气飘飘 2024-12-22 14:06:57

有关详细信息,请参阅关于修改页面上的数学的 MathJax 文档。

See the MathJax documentation on modifying math on the page for details.

爱给你人给你 2024-12-22 14:06:57

这在最新版本的 Mathjax 中发生了变化:
这是我的有效代码:

   $(function () {
    $("button").click(function () {
      event.preventDefault();
      $.ajax({
        url: "/test/Template",
        data: $("form").serialize(),
        type: "POST",
        dataType: "html",
        success: function (data) {
          $("#Output").css("display", "");
          $("#Output").html(data);
          MathJax.typeset();
        },
        error: function (error) {
          console.log(error);
        },
      });
    });

  });

This has changed in the latest version of Mathjax:
Here is my code that worked:

   $(function () {
    $("button").click(function () {
      event.preventDefault();
      $.ajax({
        url: "/test/Template",
        data: $("form").serialize(),
        type: "POST",
        dataType: "html",
        success: function (data) {
          $("#Output").css("display", "");
          $("#Output").html(data);
          MathJax.typeset();
        },
        error: function (error) {
          console.log(error);
        },
      });
    });

  });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文