使用的按钮事件不适用于Blazor Server

时间:2020-06-12 22:07:32

标签: blazor

我在闪闪发光的按钮上放置了@onclick事件时遇到了问题。这样:

<button @onclick = "(e => SelectProduct (product.Id))" data-toggle = "modal" data-target = "# productModal" class = "btn btn-primary"> More Info </button>

为了解决这个问题,我只是将事件更改为标记 使用相同的按钮类,它看起来相同,并且事件被正确触发。

<a @onclick="(e => SelectProduct (product.Id)) "data-toggle =" modal "data-target =" # productModal "class =" btn btn-primary "> More Info </a>

我希望它可以帮助某人

0 个答案:

没有答案