- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章jQuery实现评论模块由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了jQuery实现评论模块的具体代码,供大家参考,具体内容如下 。
本模块可用于评论或留言,输入区模仿畅言,内容显示使用时间轴,以下是示例图.
实现代码如下:
index.html 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<!DOCTYPE html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
<
meta
http-equiv
=
"X-UA-Compatible"
content
=
"ie=edge"
>
<
title
>Document</
title
>
<
link
rel
=
"stylesheet"
href
=
"css/publish_comment.css"
>
</
head
>
<
body
>
<
div
class
=
"comment-box"
>
<
div
class
=
"input-box"
>
<
div
class
=
"input-box-head"
>
<
img
class
=
"user-photo"
src
=
"images/photo.jpg"
>
</
div
>
<
div
class
=
"input-box-main"
>
<
div
class
=
"box-border-l"
></
div
>
<
div
class
=
"box-border-r"
></
div
>
<
div
class
=
"box-top"
></
div
>
<
div
class
=
"box-main"
>
<
div
class
=
"input-region"
>
<
textarea
class
=
"input-text-area"
name
=
"comment_input"
placeholder
=
"有事没事说两句..."
></
textarea
>
</
div
>
</
div
>
<
div
class
=
"pub-area"
>
<
div
class
=
"pub-btn"
></
div
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"show-box"
>
<
div
class
=
"comment-title"
>评论</
div
>
<
div
class
=
"time-line"
>
<
div
class
=
"comment-content"
>
<
div
class
=
'comment'
> <
img
class
=
head
-shot
src
=
'images/photo.jpg'
>
<
div
class
=
'c-circle'
></
div
>
<
span
id
=
'time'
>2019-5-15
<
span
id
=
'hour'
>15:15</
span
>
</
span
>
<
br
>
<
p
style
=
'padding:4px'
>支持各种类型的Web网站接入,网站只需要粘贴、复制JS代码到网页</
p
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
<
script
src
=
"js/jquery-3.3.1.min.js"
></
script
>
<
script
>
var hei = 200;
$(function() {
var dateDom = new Date();
//获取本地时间,年月日时分
var year = dateDom.getFullYear();
var month = dateDom.getMonth() + 1;
var day = dateDom.getDate();
var hour = dateDom.getHours();
var min = dateDom.getMinutes();
$(".time-line").css("height", hei + "px");
$(".pub-btn").click(function() {
var comment_c = $(".input-text-area").val();
if (comment_c == "") {
alert("请输入内容");
return;
}
$(".comment-content").prepend("<
div
class
=
'comment'
>" + "<
img
class
=
head
-shot
src
=
'images/photo.jpg'
>" +
"<
div
class
=
'c-circle'
></
div
>" +
"<
span
id
=
'time'
>" + year + "-" +
month + "-" +
day + " " +
"<
span
id
=
'hour'
>" + hour + ":" + min + "</
span
>" +
"</
span
>" +
"<
br
>" +
"<
p
style
=
'padding:4px'
>" + comment_c + "</
p
>" +
"</
div
>");
$(".time-line").css("height", hei + "px");
hei += 115;
})
})
</
script
>
</
body
>
</
html
>
|
publish_comment.css 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
* {
margin
:
0
;
padding
:
0
}
body {
font-size
:
14px
;
font-family
:
"微软雅黑"
;
/* background: url("../images/2.jpg") top no-repeat; */
background
:
#333333
;
background-attachment
:
fixed
;
z-index
:
0
;
background-
size
:
100%
;
}
.comment-box {
width
:
800px
;
margin
:
auto
;
margin-top
:
100px
;
}
.input-box {
width
:
100%
;
}
.input-box-head {
position
:
relative
;
width
:
100%
;
height
:
60px
;
z-index
:
10
;
}
.user-photo {
width
:
40px
;
height
:
40px
;
border-radius:
42px
;
border
:
1px
solid
#4398ed
;
position
:
absolute
;
top
:
22px
;
left
:
9px
;
font-size
:
14px
;
color
:
#4398ed
;
text-align
:
center
;
line-height
:
42px
!important
;
font-family
:
"Microsoft YaHei"
;
cursor
:
pointer
;
background
:
0
0
;
}
.input-box-main {
display
:
block
;
position
:
relative
;
zoom:
1
;
z-index
:
2
;
}
.box-border-l {
width
:
8px
;
height
:
97px
;
position
:
absolute
;
background
:
url
(
"../images/border-l.png"
);
top
:
0
;
left
:
0
;
}
.box-border-r {
width
:
8px
;
height
:
97px
;
position
:
absolute
;
background
:
url
(
"../images/border-r.png"
);
top
:
0
;
right
:
0
;
}
.box-main {
margin
:
0
8px
;
height
:
96px
;
/* background: #fff; */
border-bottom
:
1px
solid
#4398ed
;
}
.box-
top
{
width
: calc(
100%
-
16px
);
height
:
8px
;
background
:
url
(https://changyan.itc.cn/mdevp/extensions/cmt-box/
065
/images/border-t.png);
overflow
:
hidden
;
position
:
absolute
;
left
:
8px
;
top
:
0
;
}
.input-region {
padding
:
18px
10px
0
;
}
.input-text-area {
width
:
100%
;
height
:
70px
;
background
:
0
0
;
overflow-x:
hidden
;
overflow-y:
auto
;
border
:
0
;
font-size
:
13px
;
color
:
#4398ed
;
resize:
none
;
line-height
:
normal
;
text-align
:
left
;
box-shadow:
none
;
-webkit-box-shadow:
none
;
outline
:
none
;
border
:
none
;
}
.pub-area {
width
:
100%
;
position
:
relative
;
z-index
:
12
;
}
.pub-btn {
position
:
absolute
;
top
:
10px
;
right
:
0
;
width
:
102px
;
height
:
30px
;
overflow
:
hidden
;
border
:
0
;
padding
:
0
;
margin
:
0
;
cursor
:
pointer
;
background-image
:
url
(
"../images/post-btn.png"
);
background-repeat
:
no-repeat
;
background-color
:
transparent
;
}
.show-box {
position
:
relative
;
top
:
10px
;
}
.comment-title {
position
:
absolute
;
top
:
35px
;
left
:
28px
;
width
:
60px
;
height
:
60px
;
line-height
:
60px
;
text-align
:
center
;
font-size
:
16px
;
color
:
#4398ed
;
border
:
2px
solid
#4398ed
;
border-radius:
50%
;
}
.time-line {
width
:
60px
;
height
:
0
;
position
:
absolute
;
top
:
100px
;
left
:
0
;
border-right
:
2px
solid
#4398ed
;
}
.comment-content {
width
:
380px
;
height
:
80px
;
position
:
absolute
;
top
:
0px
;
left
:
60px
;
}
.comment-content .comment {
width
:
600px
;
height
:
80px
;
/* background: #fff; */
border
:
1px
solid
#4398ed
;
border-radius:
6px
;
margin-top
:
30px
;
font-size
:
16px
;
line-height
:
20px
;
color
:
#4398ed
;
word-break: break-
all
;
position
:
relative
;
left
:
15px
;
padding
:
10px
;
box-sizing: border-box;
}
.c-
circle
{
width
:
6px
;
height
:
6px
;
border-radius:
50%
;
border
:
2px
solid
#4398ed
;
background
:
#4398ed
;
position
:
absolute
;
top
:
35px
;
left
:
-20px
;
}
.head-shot {
position
:
absolute
;
top
:
20px
;
left
:
-70px
;
width
:
40px
;
height
:
40px
;
border
:
1px
solid
#4398ed
;
border-radius:
50%
;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/HU_YEWEN/article/details/89243280 。
最后此篇关于jQuery实现评论模块的文章就讲到这里了,如果你想了解更多关于jQuery实现评论模块的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我最近在我的机器上安装了 cx_Oracle 模块,以便连接到远程 Oracle 数据库服务器。 (我身边没有 Oracle 客户端)。 Python:版本 2.7 x86 Oracle:版本 11.
我想从 python timeit 模块检查打印以下内容需要多少时间,如何打印, import timeit x = [x for x in range(10000)] timeit.timeit("
我盯着 vs 代码编辑器上的 java 脚本编码,当我尝试将外部模块包含到我的项目中时,代码编辑器提出了这样的建议 -->(文件是 CommonJS 模块;它可能会转换为 ES6 模块。 )..有什么
我有一个 Node 应用程序,我想在标准 ES6 模块格式中使用(即 "type": "module" in the package.json ,并始终使用 import 和 export)而不转译为
我正在学习将 BlueprintJS 合并到我的 React 网络应用程序中,并且在加载某些 CSS 模块时遇到了很多麻烦。 我已经安装了 npm install @blueprintjs/core和
我需要重构一堆具有这样的调用的文件 define(['module1','module2','module3' etc...], function(a, b, c etc...) { //bun
我是 Angular 的新手,正在学习各种教程(Codecademy、thinkster.io 等),并且已经看到了声明应用程序容器的两种方法。首先: var app = angular.module
我正在尝试将 OUnit 与 OCaml 一起使用。 单元代码源码(unit.ml)如下: open OUnit let empty_list = [] let list_a = [1;2;3] le
我在 Angular 1.x 应用程序中使用 webpack 和 ES6 模块。在我设置的 webpack.config 中: resolve: { alias: { 'angular':
internal/modules/cjs/loader.js:750 return process.dlopen(module, path.toNamespacedPath(filename));
在本教程中,您将借助示例了解 JavaScript 中的模块。 随着我们的程序变得越来越大,它可能包含许多行代码。您可以使用模块根据功能将代码分隔在单独的文件中,而不是将所有内容都放在一个文件
我想知道是否可以将此代码更改为仅调用 MyModule.RED 而不是 MyModule.COLORS.RED。我尝试将 mod 设置为变量来存储颜色,但似乎不起作用。难道是我方法不对? (funct
我有以下代码。它是一个 JavaScript 模块。 (function() { // Object var Cahootsy; Cahootsy = { hello:
关闭。这个问题是 opinion-based 。它目前不接受答案。 想要改进这个问题?更新问题,以便 editing this post 可以用事实和引文来回答它。 关闭 2 年前。 Improve
从用户的角度来看,一个模块能够通过 require 加载并返回一个 table,模块导出的接口都被定义在此 table 中(此 table 被作为一个 namespace)。所有的标准库都是模块。标
Ruby的模块非常类似类,除了: 模块不可以有实体 模块不可以有子类 模块由module...end定义. 实际上...模块的'模块类'是'类的类'这个类的父类.搞懂了吗?不懂?让我们继续看
我有一个脚本,它从 CLI 获取 3 个输入变量并将其分别插入到 3 个变量: GetOptions("old_path=s" => \$old_path, "var=s" =
我有一个简单的 python 包,其目录结构如下: wibble | |-----foo | |----ping.py | |-----bar | |----pong.py 简单的
这种语法会非常有用——这不起作用有什么原因吗?谢谢! module Foo = { let bar: string = "bar" }; let bar = Foo.bar; /* works *
我想运行一个命令: - name: install pip shell: "python {"changed": true, "cmd": "python <(curl https://boot
我是一名优秀的程序员,十分优秀!