2022年11月30日

C# CheckBoxList 单选

摘要: 想让CheckBoxList 成为单选,要在选中事件时候绑定一个js方法 1 <asp:CheckBoxList ID="cblComments" runat="server" OnSelectedIndexChanged="cblComments_SelectedIndexChanged" Aut 阅读全文

posted @ 2022-11-30 10:43 张不胖 阅读(423) 评论(0) 推荐(0) 编辑

js 悬浮框 光标位置 页面滚动后的光标位置

摘要: 想要写一个悬浮框,当划过某个区域的时候,这个悬浮框显示,光标在哪,悬浮框就在哪。 思路是:定义一个DIV,初始化时使之display: none,在光标划过指定位置时,将此DIV设置为display: block。使用onmouseover事件和onmouseout事件。 1.定义DIV 1 <di 阅读全文

posted @ 2022-11-30 10:28 张不胖 阅读(148) 评论(0) 推荐(0) 编辑

导航