创建 html 按钮链接 - 不起作用

发布于 2024-10-16 02:55:08 字数 395 浏览 0 评论 0原文

非常快的问题。我的模板中有一个像这样的 href 链接。

<a href={% url tiptop.views.client_items name.pk %}>add item</a>

这是可行的,但如果我希望它由于某种原因将其创建为按钮,它就不起作用。

<input type="button" on_click="window.location.href='{% url tiptop.views.client_items name.pk %}></a>'" value="Add item">

我不明白为什么它不起作用。基本上,该按钮会显示,但是当我单击该按钮时,它什么也不做。

very quick question. I have a href link like so in my template.

<a href={% url tiptop.views.client_items name.pk %}>add item</a>

This works But if I wanted it to create it as a button for some reason it does not work.

<input type="button" on_click="window.location.href='{% url tiptop.views.client_items name.pk %}></a>'" value="Add item">

I don't understand why it does not work. Basically, the button shows, but when I click on the button it does NOTHING.

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

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

发布评论

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

评论(1

万劫不复 2024-10-23 02:55:08

尝试:

   <a <!--...your link code here -->
   <input type="button" onClick="window.location.href='{% url tiptop.views.client_items name.pk %}'" value="Add item"/></a>

您的单引号和双引号没有正确关闭。

Try:

   <a <!--...your link code here -->
   <input type="button" onClick="window.location.href='{% url tiptop.views.client_items name.pk %}'" value="Add item"/></a>

Your Quotes the single and the double one where not closed properly.

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