博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
checkbox点击后出现div
阅读量:6253 次
发布时间:2019-06-22

本文共 1399 字,大约阅读时间需要 4 分钟。

HTML:

<div class="msg_editUrl_function">

<label class="labelChecked" for="url_checkbox">
<input type="checkbox" class="url_checkbox" name="source_url_checked" id="url_checkbox">
<span class="lbl_content"> 原文链接</span>
</label>
<div class="url_input_div" >
<input type="text" class="url_input" name="source_url">
</div>
</div> 

CSS:

.msg_editUrl_function {

padding-top: 20px;
margin: 0 90px 10px 0;
border-bottom: 1px solid #e7e7eb;
}

.labelChecked {

position: relative;
width: 90px;
height: 30px;
display: block;
}

.url_checkbox {

box-sizing: border-box;
padding: 0;
width: 18px;
height: 18px;
position: absolute;
}

.lbl_content {

display: inline-block;
position: absolute;
width: 60px;
height: 20px;
left: 30px;
bottom: 10px;
}

.url_input {

background-color: transparent;
border: 0;
outline: 0;
width: 100%;
height: 100%;
}

.url_input_div {

margin-left: 1.7em;
width: 508px;
position: relative;
height: 30px;
line-height: 30px;
vertical-align: middle;
font-size: 14px;
padding: 0 10px;
border: 1px solid #e7e7eb;
box-shadow: none;
-webkit-box-shadow: none;
-moz-border-radius: 0;
-webkit-border-radius: 0;
background-color: #fff;
margin-bottom: 20px;
display:none;
}

JS:

$(".url_checkbox").change(function(){
if($(".url_checkbox").prop("checked")){
$(".url_input_div").css("display","block");
}else{
$(".url_input_div").css("display","none");
}
})

转载于:https://www.cnblogs.com/ymcatblog/p/6170195.html

你可能感兴趣的文章
批量修改sharepoint 2013站点里区域设置
查看>>
我的Android开发相关文章
查看>>
20141029
查看>>
Windows Server 2012如果打开网页慢下载快的话
查看>>
Ubuntu下U盘只读文件系统,图标上锁,提示无法修改
查看>>
C#设计模式之十一享元模式(Flyweight Pattern)【结构型】
查看>>
基于zookeeper简单实现分布式锁
查看>>
几种函数调用方式
查看>>
【MySQL】MySQL 常用语法之锁表与解锁表
查看>>
【142】阿蛮歌霸使用技巧
查看>>
HTTP 请求报文 响应报文
查看>>
[转载] 程序员必看:请不要做浮躁的人 24法则
查看>>
JavaWeb_JavaEE_命名规则
查看>>
[HDU 1317]XYZZY[SPFA变形][最长路]
查看>>
程序员面试题:问谁养蛇?
查看>>
js面向对象初步探究(上) js面向对象的5种写方法
查看>>
Create the Data Access Layer
查看>>
Android必知必会-Android Studio修改包名
查看>>
bootstrap -- 一个标签中,同时有 col-xs , col-sm , col-md , col-lg
查看>>
IEEE754标准的浮点数存储格式
查看>>