我需要在确认对话框中添加一个HTML href链接,但是我得到的是href的文本而不是HTML标记)。

return confirm("Changes to your financial details may affect your GST or tax status for items already for sale via Momento Shop. Please read and confirm the Momento Shop<a target='_blank' href='/pages/terms_print'>terms and conditions.</a>")

上面代码的输出是:
Changes to your financial details may affect your GST or tax
status for items already for sale via Momento Shop. Please
read and confirm the Momento Shop terms and conditions.

但是我需要条款和条件成为链接(可以单击)。

最佳答案

您无法在内置的确认对话框中执行此操作。

看看周围的一些可用的UI库。 jQuery UI's dialog component似乎很合适。

关于javascript - 如何在javascript Confirm()对话框中获取HTML链接?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7200043/

10-16 19:38