美文网首页我爱编程
前端笔记汇总

前端笔记汇总

作者: 整个夏天 | 来源:发表于2018-06-07 21:07 被阅读20次

JQuery获取元素

获取idcountryId的元素的值

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>

相关文章

网友评论

    本文标题:前端笔记汇总

    本文链接:https://www.haomeiwen.com/subject/nvmyextx.html