js
小雨飞
这个作者很懒,什么都没留下…
展开
-
js 设置隐藏域获取innerText的值,select下拉框回显
创建一个<input>,设置为隐藏域,将id="result1"的innerText给id="addr1"的value <span class="list-span" id="result1">选择籍贯</span><input type="hidden" id="addr1" n原创 2017-10-13 11:30:30 · 2182 阅读 · 0 评论 -
html5 拖拽
*{margin: 0 auto;} div{border: 1px solid black;height: 200px;width: 800px;margin-top: 20px;} span{background: red;width: 50px;height: 50px;margin: 20px;display: inline-block;} ...原创 2019-08-09 15:54:56 · 158 阅读 · 0 评论 -
jq、js 修改css
//=====================jq==========================//修改多个$("div").css({ "color":"white", "background-color":"#1E90FF"});//修改单个$("div").css("color","white")...原创 2019-03-15 15:50:39 · 2447 阅读 · 0 评论 -
jq、js 添加/删除class
//=======================js=====================//1、先删除,后添加。或者先添加后删除均可 $(".aaa").addClass("bbb").removeClass("aaa"); $(".aaa").removeClass("aaa").addClass("bbb");//2、追加类名$("div"原创 2019-03-15 15:28:49 · 2299 阅读 · 0 评论 -
提交form表单时弹出下拉框,使用js写
=================================css======================<style> .flex-container { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; j...原创 2018-12-13 14:53:57 · 668 阅读 · 0 评论 -
打印内容与页面相差较大时,使用js编写html
===============控制层=============== //打印 @RequestMapping("Print") @ResponseBody public ov print(Integer id) { ov o=ovService.getId(id); //返回实体类 return o; } ===============htm...原创 2018-08-21 15:48:10 · 2003 阅读 · 0 评论 -
打印内容与页面相差较大时,指定打印页面
================html=====================================css====================== <!-- 打印的样式--> <style media="print"> @page { /* 纵向: */ size: portrait; size: auto;...原创 2018-08-21 15:31:18 · 303 阅读 · 0 评论 -
js select二级联动
<!-- 一级 --><select id="s1" onChange="move()" name="deducted_division" style="height: 34px;width: 60%;"> <option value="">--请选择--</option> &原创 2018-08-31 11:47:26 · 3182 阅读 · 0 评论 -
在js中添加和删除html
html<ul style="list-style-type:upper-latin;" id="fm1"> <li> <input type="text" name="content" /> <button onClick="原创 2018-08-14 16:05:30 · 4679 阅读 · 1 评论 -
js 判断数字用的正则表达式
//验证整数或0,例:0,12,2var reg=/^[1-9]\d*$|^0$/;//验证整数、有1-2位小数的数字或0.1-2位小数的数字,例:0,12,2,0.11,0.1,1.01,1.11,11.10var num=/^[1-9]\d*(\.\d{1,2})?$|^0+(\.\d{1,2})?$/;if(reg.test(from.goodTure.value)==fals...原创 2018-07-10 16:17:20 · 3655 阅读 · 0 评论 -
input type="checkbox" js 限制单选
<input type="checkbox" name="surgeryType" value="患者年龄超过80岁" style="border:outset;"/> 患者年龄超过80岁<input type="checkbox" name="surgeryType" value="基础病较多" style="原创 2018-07-03 11:48:59 · 3526 阅读 · 2 评论 -
html 打印指定区域并去掉页眉、页脚,设置打印布局(纵向、横向)
<style type="text/css"> table{ font-size:18px; border-collapse:collapse; text-align: center; margin: 0 auto; } .al{ /* table宽、...原创 2018-06-14 14:32:55 · 10215 阅读 · 0 评论 -
validate验证+ajax
======================controller:控制层==================== @RequestMapping("roleName1") @ResponseBody public Object selByName(String roleName){ boolean res=true; List<String> ...原创 2017-10-16 16:05:32 · 332 阅读 · 0 评论 -
预览多张图片
function addWorks(){ $('#form-mod').find('input:file').change(function () { var files = $(this)[0].files; var workLen = $('a[name=remove]').length; if (files.length ...原创 2017-10-27 14:57:50 · 417 阅读 · 0 评论 -
复杂的 jq 拖拽、框选拖拽,ajax传值、解决删除与拖拽冲突
*{margin: 0 auto;} .dragdiv{border: 2px solid black;height: 100px;width: 800px;margin-top: 20px;} span{background: red;width: 50px;height: 50px;margin: 20px;display: inline-block;} .to...原创 2019-08-09 16:33:31 · 341 阅读 · 0 评论