前端笔记汇总
2018-06-07 本文已影响20人
整个夏天
JQuery获取元素
获取id
为countryId
的元素的值
var country=$("#countryId").val();
css 使用class 和id调用样式
样式代码
<style type="text/css">
.infont {
font-family: "宋体";
font-size: 12px;
color: #FF0000;
text-decoration: none;
}
#tinfont {
font-family: "宋体";
font-size: 12px;
color: #FF0000;
text-decoration: none;
}
</style>
调用代码
<font class="infont">ddddddddddddddddddd</font>
<font id="tinfont">dfddddddddddddddddd</font>
css使用link方式调用
样式代码,新建一个名为job.css的文件,写入如下样式.
.addBtn{
width: 150px;
height: 150px;
border-width: 0px;
background-color: transparent;
background-image: url("/Public/images/add.png");
margin-left: 20px;
}
引用代码
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="/Public/css/job.css" type="text/css" />
</head>
调用代码
<button class="addBtn" onclick="submit()"></button>