Blazor 服务器端重新启动应用程序 @onclick 事件
Blazor Forms 计算器,接受输入并计算数字。最后,我有两个按钮,“下载 PDF”(包含结果)和“新计算”,这将重新启动应用程序。
<button @onclick=Print style="background-color:green;">
Download PDF
</button>
<button style="background-color:green;">
New Calculation
</button>
我可以使用 @onclick 事件或调用 Javascript 函数来做到这一点吗?
Blazor Forms Calculator that takes inputs and calculates numbers. At the end I have two buttons, Download PDF (with the results) and New Calculation that will restart the application.
<button @onclick=Print style="background-color:green;">
Download PDF
</button>
<button style="background-color:green;">
New Calculation
</button>
Can I do that with the @onclick event or call a Javascript function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经使用了导航管理器,并在索引页面上导航了该应用程序,
单击后调用它
I have used Navigation Manager and have navigated the app on the Index page
calling it on click