chat-qa.page.js
1.37 KB
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
'use strict';
require('../common');
$('.list-group div').on('touchstart',
function() {
$(this).addClass('highlight');
}).on('touchend touchcancel',
function() {
$(this).removeClass('highlight');
}
);
$('.open-down').click(
function() {
$(this).next('.down-item').toggle().siblings('.down-item').hide();
}
);
$('.cancel-btn').click(
function() {
window.history.go(-1);
}
);
$('.get-qa').keyup(
function() {
var searchText = $(this).val();
if (searchText === '') {
$('.list-group').empty();
} else {
$('.list-group').html('<div class="common-item">' +
'<p>111<span>' + searchText + '</span></p>' +
'<i class="arr-ico iconfont"></i>' +
'</div>' +
'<div class="common-item">' +
'<p>222<span>' + searchText + '</span></p>' +
'<i class="arr-ico iconfont"></i>' +
'</div>' +
'<div class="common-item">' +
'<p>333<span>' + searchText + '</span></p>' +
'<i class="arr-ico iconfont"></i>' +
'</div>' +
'<div class="common-item">' +
'<p>444<span>' + searchText + '</span></p>' +
'<i class="arr-ico iconfont"></i>' +
'</div>' +
'<div class="common-item">' +
'<p>555<span>' + searchText + '</span></p>' +
'<i class="arr-ico iconfont"></i>' +
'</div>');
}
}
);