创建 html 按钮链接 - 不起作用
非常快的问题。我的模板中有一个像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
您的单引号和双引号没有正确关闭。
Try:
Your Quotes the single and the double one where not closed properly.