
前端
aaaaasdcgg
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
文本框中只能输入数字
html:<input type = "text" class = "amount"/>js:$(function() { $('.amount').each(function() { initNumberText($(this)) })})function initNumberText(element) { element...原创 2019-03-22 13:11:10 · 570 阅读 · 0 评论 -
前端多选框实现单选操作
html:<input type="checkbox" name="receivedGoods" value="0" class="checkBoxInput" >Entirely<input type="checkbox" name="receivedGoods" value="1" class="checkBoxInput" >Partiallyjs:$(...原创 2019-03-22 13:28:32 · 1806 阅读 · 0 评论 -
div span p等标签实现可编辑
1. 适合打印页面:<div contenteditable="true" style="min-height:50px;width: 100%;border:0px"></div>contenteditable: 值为true代表可编辑,为false代表不可编辑min-height: 设置最小行高2.适合表单提交html:<span cont...原创 2019-03-22 13:49:24 · 2028 阅读 · 0 评论 -
Freemasker 三目运算
<input type="text" name="info_${index}" class="text" value="${(infos[5] == true)?string('是', '否')?html}" readonly />原创 2019-04-08 11:54:45 · 211 阅读 · 0 评论 -
获取焦点时去掉蓝色边框
加上样式:outline:none 或者outline:medium上面的样式对textarea无效的情况下:.textarea-no-border { box-shadow:none !important;}<textarea name="comment" class="textarea-no-border" readonly cols="100%" rows="...原创 2019-05-10 09:39:32 · 765 阅读 · 0 评论 -
radio checkbox 点击文本实现选中效果
方法一:直接在选择框的外层写上label标签<label> <input type="checkbox" name="" value=""/> 线下</label>方法二:input中的id与label中的for相同,表示此label与input绑定<input type="checkbox" id="underLi...原创 2019-05-10 15:36:39 · 538 阅读 · 0 评论