html – 如何禁用一个按钮更优雅

前端之家收集整理的这篇文章主要介绍了html – 如何禁用一个按钮更优雅前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个我的观点以下剃须刀代码
@if (item.PMApproved != true) {
                    <input type="button" class="btnresetinvoice button" value="Reset" data-invoiceid="@item.InvoiceId" />
                }
                else {
                    <input type="button" class="btnresetinvoice button" value="Reset" data-invoiceid="@item.InvoiceId" disabled="disabled" />
                }

很粗糙基本上我想在一定条件下禁用按钮,因为您可以从代码解决.什么是更可取的方法呢?

解决方法

我不知道你在使用什么语言,但是你可能会把你的if语句更接近两行之间的实际不同:
<input type="button" class="btnresetinvoice button" value="Reset"
       data-invoiceid="@item.InvoiceId"
       @{ if(item.PMApproved != true) { 
             @:disabled="disabled" 
        } }
/>
原文链接:https://www.f2er.com/html/230513.html

猜你在找的HTML相关文章