0
我正在開發一個c#項目。jQuery有條件地添加/刪除onlick和onserverclick屬性
我有一個錨標記,我想基於某些條件添加/刪除onlick和onserverclick屬性。
設計: -
<a class="btnSelected" href="#" name="Platinum" onclick="if (!confirm('Are you sure you want to change the plan?')) return false;" onserverclick="UpdatePackage_Click" runat="server">upgrade</a>
的jQuery: -
if ($("#" + '<%= hdnPackType.ClientID %>').val() != $("#" + '<%= hdnOrigionalPackType.ClientID %>').val()) {
$('a.btnSelected').html('select').attr("onclick", "if (!confirm('Are you sure you want to change the plan?')) return false;");
}
else {
$('a.btnSelected').html('<i class="fa fa-check mr-10"></i>selected').removeAttr('onclick').removeAttr('href');
}
你不能屬性添加到文本元素 – madalinivascu
我應該去一個按鈕? –
我不知道你在做什麼 – madalinivascu