質問編集履歴
1
ソースの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -15,4 +15,68 @@
|
|
15
15
|
3、参考になるサイトとかありますか?
|
16
16
|
|
17
17
|
なんとなく出来そうな気がしますが、検索ワードも思いつきません。
|
18
|
-
ご存知の方、ご指導お願い申し上げます。
|
18
|
+
ご存知の方、ご指導お願い申し上げます。
|
19
|
+
|
20
|
+
|
21
|
+
*プログラムを追加させていただきます。
|
22
|
+
```ここに言語を入力
|
23
|
+
<div class="col-xs-12">
|
24
|
+
<div class="table-responsive">
|
25
|
+
<table class="table table-striped table-bordered table-hover">
|
26
|
+
<thead>
|
27
|
+
<tr>
|
28
|
+
<th nowrap="">対象</th>
|
29
|
+
<th> </th>
|
30
|
+
<th nowrap="">所属部署</th>
|
31
|
+
<th nowrap="">名前</th>
|
32
|
+
<th nowrap="">資格</th>
|
33
|
+
</tr>
|
34
|
+
</thead>
|
35
|
+
<tbody>
|
36
|
+
<tr>
|
37
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="1"></div></td>
|
38
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('1');">詳細</button></div></td>
|
39
|
+
<td nowrap>総務経理部</td>
|
40
|
+
<td nowrap>山田 いちろう</td>
|
41
|
+
<td nowrap>FP2</td>
|
42
|
+
</tr>
|
43
|
+
<tr>
|
44
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="2"></div></td>
|
45
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('2');">詳細</button></div></td>
|
46
|
+
<td nowrap>総務経理部</td>
|
47
|
+
<td nowrap>山田 二郎</td>
|
48
|
+
<td nowrap>FP2</td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="3"></div></td>
|
52
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('3');">詳細</button></div></td>
|
53
|
+
<td nowrap>総務経理部</td>
|
54
|
+
<td nowrap>山田 三郎</td>
|
55
|
+
<td nowrap>FP1</td>
|
56
|
+
</tr>
|
57
|
+
<tr>
|
58
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="4"></div></td>
|
59
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('4');">詳細</button></div></td>
|
60
|
+
<td nowrap>総務経理部</td>
|
61
|
+
<td nowrap>田中 四郎</td>
|
62
|
+
<td nowrap>FP2</td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="5"></div></td>
|
66
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('5');">詳細</button></div></td>
|
67
|
+
<td nowrap>総務経理部</td>
|
68
|
+
<td nowrap>井上 五郎</td>
|
69
|
+
<td nowrap>FP2</td>
|
70
|
+
</tr>
|
71
|
+
<tr>
|
72
|
+
<td><div class="text-center"><input type="checkbox" name="sentaku[]" value="6"></div></td>
|
73
|
+
<td><div class="text-center"><button type="button" class="btn btn-default btn-xs" onclick="viewJump('6');">詳細</button></div></td>
|
74
|
+
<td nowrap>総務経理部</td>
|
75
|
+
<td nowrap>佐藤 花子</td>
|
76
|
+
<td nowrap>FP1</td>
|
77
|
+
</tr>
|
78
|
+
</tbody>
|
79
|
+
</table>
|
80
|
+
</div>
|
81
|
+
</div> <!-- col-xs-12 -->
|
82
|
+
```
|