JavaScript+JS论坛

css

* {
    margin: 0;
    padding: 0;
    font-family: "Arial";
}

ul,
li {
    list-style: none;
}

.bbs {
    margin: 0 auto;
    width: 600px;
    position: relative;
}

header {
    padding: 5px 0;
    border-bottom: 1px solid #cecece;
}

header span {
    display: inline-block;
    width: 220px;
    height: 50px;
    color: #fff;
    background: #009966;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-radius: 8px;
    cursor: pointer;
}

.post {
    position: absolute;
    background: #ffffff;
    border: 1px #cccccc solid;
    width: 500px;
    left: 65px;
    top: 70px;
    padding: 10px;
    font-size: 14px;
    z-index: 999999;
    display: none;
}

.post .title {
    width: 450px;
    height: 30px;
    line-height: 30px;
    display: block;
    border: 1px #cecece solid;
    margin-bottom: 10px;
}

.post select {
    width: 200px;
    height: 30px;
}

.post .content {
    width: 450px;
    height: 200px;
    display: block;
    margin: 10px 0;
    border: 1px #cecece solid;
}

.post .btn {
    width: 160px;
    height: 35px;
    color: #fff;
    background: #009966;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    border-radius: 8px;
    cursor: pointer;
}

.bbs section ul li {
    padding: 10px 0;
    border-bottom: 1px #999999 dashed;
    overflow: hidden;
}

.bbs section ul li div {
    float: left;
    width: 60px;
    margin-right: 10px;
}

.bbs section ul li div img {
    border-radius: 50%;
    width: 60px;
}

.bbs section ul li h1 {
    float: left;
    width: 520px;
    font-size: 16px;
    line-height: 35px;
}

.bbs section ul li p {
    color: #666666;
    line-height: 25px;
    font-size: 12px;
}

.bbs section ul li p span {
    padding-right: 20px;
}
.delbtn {
    width: 60px;
    height: 30px;
    color: #fff;
    background: #009966;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    border-radius: 8px;
    margin-left: 20px;
}

代码块

<!DOCTYPE html>
<html>

<head lang="en">
    <meta charset="UTF-8">
    <title>论坛</title>
    <link href="css/bbs.css" rel="stylesheet">
</head>

<body>
    <div class="bbs">
        <header>
            <span onclick="add()">我要发帖</span>
        </header>
        <section id="main">
        </section>
        <div class="post">
            <input class="title" placeholder="请输入标题(1-50个字符)">所属版块:
            <select>
                <option>请选择版块</option>
                <option>Python交流专区</option>
                <option>Java交流专区</option>
                <option>Web交流专区</option>
            </select>
            <textarea class="content"></textarea>
            <input class="btn" value="发布" onclick="create()">
            <input class="btn" value="关闭" onclick="closing()">
        </div>
    </div>
</body>
<script>
    const postelement = document.getElementsByClassName("post")[0];

    function add() {
        postelement.style.display = "block";
    }

    function closing() {
        postelement.style.display = "none";
    }

    function create() {
        var title = document.getElementsByClassName("title")[0];
        //创建li标签
        var main = document.getElementById("main");
        var liElement = document.createElement("li");
        main.appendChild(liElement);
        //获取标题
        var h1Element = document.createElement("h1");
        h1Element.innerHTML = title.value;
        //获取选择版块
        var selectElement = title.nextElementSibling;
        var selectValue = selectElement.value;
        //获取内容
        var textAreaElement = selectElement.nextElementSibling;
        var textAreaValue = textAreaElement.value;
        //拼接内容
        var spanElement = document.createElement("span");
        spanElement.innerHTML = '版块:' + selectValue + '  内容:' + textAreaValue;
        //删除发帖
        var btnElement = document.createElement('input');
        btnElement.setAttribute('type', 'button');
        btnElement.setAttribute('name', 'del');
        btnElement.setAttribute('class', 'delbtn');
        btnElement.setAttribute('value', '删除');
        btnElement.setAttribute('onclick', 'del(this)');
        //创建 p标签
        var pElement = document.createElement("p");
        //将各元素放入li中
        pElement.appendChild(spanElement);
        pElement.appendChild(btnElement);
        liElement.appendChild(h1Element);
        liElement.appendChild(pElement);
        main.insertBefore(liElement, main.firstElementChild);
        closing();
    }
    function del(obj) {
        var main = document.getElementById("main");
        main.removeChild(obj.parentNode.parentNode);
    }
</script>

</html>
  • 13
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值