複選框是隨機生成span標籤。 目前代碼:如何刪除複選框生成的span標籤
<asp:CheckBox ID="CheckBox_select" type="checkbox" ClienIDMode="Static" runat="server" onclick="javascript:CheckCheckBox(this);" />
<asp:Label AssociatedControlID="CheckBox_select" ClientIDMode="Static" runat="server" ID="cbs" />
生成:
<span type="checkbox"><input id="CheckBox_select" type="checkbox" name="ctl00$ContentPlaceHolder1$GridView_reminderList$ctl02$CheckBox_select" onclick="javascript:CheckCheckBox(this);"></span>
如何去除跨度標籤?
使用'.unwrap()'匹配的元素OMG。 – guradio