我有一个包含我要删除的摘要标记的表
<table summary="Summary">...
我需要删除摘要标记,我不能使用jquery。我需要从页面源中删除它。
c#可以实现吗?
答案 0 :(得分:2)
没有jQuery:
document.getElementById("myTable").removeAttribute("summary");
或使用C#:
<table runat="server" id="myTable" summary="Summary">...
(mark-up)
myTable.Attributes.Remove("summary");
(C#)
注意,上面假设您正在使用asp。净。如果这是一个不正确的假设,请随意投票,但我会留下它以防万一它对你有用。