質問編集履歴
6
説明文変更hide
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,8 +84,16 @@
|
|
84
84
|
|
85
85
|
$("use[href = '/rs-statics/images/sprite.svg#ic_image']").parent("tox-tbtn").addClass("hidden");
|
86
86
|
|
87
|
-
$("use[href = '/rs-statics/images/sprite.svg#ic_a
|
87
|
+
$("use[href = '/rs-statics/images/sprite.svg#ic_image']").parent("tox-tbtn").css("display" , "none");
|
88
88
|
|
89
89
|
$("button[title='画像の挿入']").css("display", "none");
|
90
90
|
|
91
|
+
$("button[aria-label='画像の挿入']").hide();
|
92
|
+
|
93
|
+
$("button[title='画像の挿入']").hide();
|
94
|
+
|
95
|
+
$(":button[title='画像の挿入'].tox-tbtn").hide();
|
96
|
+
|
97
|
+
$("use[href = '/rs-statics/images/sprite.svg#ic_image']").parent("tox-tbtn").hide();
|
98
|
+
|
91
99
|
```
|
5
説明文変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,53 +20,51 @@
|
|
20
20
|
|
21
21
|
HTML文
|
22
22
|
|
23
|
-
<
|
23
|
+
<div title="" role="toolbar" data-alloy-tabstop="true" tabindex="-1" class="tox-toolbar__group">
|
24
24
|
|
25
|
-
<
|
25
|
+
<button aria-label="HTMLの挿入" title="HTMLの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
26
26
|
|
27
|
-
<s
|
27
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
28
28
|
|
29
|
-
<
|
29
|
+
<svg width="24" height="24" role="addhtml">
|
30
30
|
|
31
|
-
</svg>
|
31
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_addhtml"></use>
|
32
32
|
|
33
|
-
</s
|
33
|
+
</svg>
|
34
34
|
|
35
|
-
</
|
35
|
+
</span>
|
36
36
|
|
37
|
+
</button>
|
37
38
|
|
39
|
+
<button aria-label="アセットの挿入" title="アセットの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
38
40
|
|
39
|
-
|
41
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
40
42
|
|
41
|
-
<s
|
43
|
+
<svg width="24" height="24" role="new-document">
|
42
44
|
|
43
|
-
<s
|
45
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_asset"></use>
|
44
46
|
|
45
|
-
<
|
47
|
+
</svg>
|
46
48
|
|
47
|
-
</s
|
49
|
+
</span>
|
48
50
|
|
49
|
-
</
|
51
|
+
</button>
|
50
52
|
|
51
|
-
|
53
|
+
非表示にしたいHTML文
|
52
54
|
|
55
|
+
<button aria-label="画像の挿入" title="画像の挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
53
56
|
|
57
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
54
58
|
|
55
|
-
|
59
|
+
<svg width="24" height="24" role="image">
|
56
60
|
|
57
|
-
<
|
61
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_image"></use>
|
58
62
|
|
59
|
-
<s
|
63
|
+
</svg>
|
60
64
|
|
61
|
-
<s
|
65
|
+
</span>
|
62
66
|
|
63
|
-
<use xlink:href="/rs-statics/images/sprite.svg#ic_image"></use>
|
64
|
-
|
65
|
-
</svg>
|
66
|
-
|
67
|
-
</span>
|
68
|
-
|
69
|
-
</button>
|
67
|
+
</button>
|
70
68
|
|
71
69
|
```
|
72
70
|
|
4
説明文変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -86,4 +86,8 @@
|
|
86
86
|
|
87
87
|
$("use[href = '/rs-statics/images/sprite.svg#ic_image']").parent("tox-tbtn").addClass("hidden");
|
88
88
|
|
89
|
+
$("use[href = '/rs-statics/images/sprite.svg#ic_asset']").parent("tox-tbtn").css("display" , "none");
|
90
|
+
|
91
|
+
$("button[title='画像の挿入']").css("display", "none");
|
92
|
+
|
89
93
|
```
|
3
説明文変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,6 @@
|
|
84
84
|
|
85
85
|
$(":button[title='画像の挿入'].tox-tbtn").addClass("hidden");
|
86
86
|
|
87
|
-
$("use[href = '/rs-statics/images/sprite.svg#ic_a
|
87
|
+
$("use[href = '/rs-statics/images/sprite.svg#ic_image']").parent("tox-tbtn").addClass("hidden");
|
88
88
|
|
89
89
|
```
|
2
説明文変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,10 +1,18 @@
|
|
1
|
-
jQueryで非表示にしたい
|
1
|
+
jQueryで非表示にしたいHTMLのボタンがあります。
|
2
2
|
|
3
3
|
しかし同じ名前で記述されている部分が多くうまく設定できません。
|
4
4
|
|
5
|
-
ご教授お願い致します。
|
6
5
|
|
7
6
|
|
7
|
+
<条件>
|
8
|
+
|
9
|
+
HTMLファイルの書き換えは出来ません。
|
10
|
+
|
11
|
+
jQueryでHTML,CSSを追加していく。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
ご教授お願い致します。
|
8
16
|
|
9
17
|
|
10
18
|
|
@@ -14,11 +22,33 @@
|
|
14
22
|
|
15
23
|
<button aria-label="HTMLの挿入" title="HTMLの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
16
24
|
|
25
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
26
|
+
|
27
|
+
<svg width="24" height="24" role="addhtml">
|
28
|
+
|
29
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_addhtml"></use>
|
30
|
+
|
31
|
+
</svg>
|
32
|
+
|
33
|
+
</span>
|
34
|
+
|
35
|
+
</button>
|
17
36
|
|
18
37
|
|
19
|
-
HTML文
|
20
38
|
|
21
39
|
<button aria-label="アセットの挿入" title="アセットの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
40
|
+
|
41
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
42
|
+
|
43
|
+
<svg width="24" height="24" role="new-document">
|
44
|
+
|
45
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_asset"></use>
|
46
|
+
|
47
|
+
</svg>
|
48
|
+
|
49
|
+
</span>
|
50
|
+
|
51
|
+
</button>
|
22
52
|
|
23
53
|
|
24
54
|
|
@@ -26,15 +56,25 @@
|
|
26
56
|
|
27
57
|
<button aria-label="画像の挿入" title="画像の挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
28
58
|
|
59
|
+
<span class="tox-icon tox-tbtn__icon-wrap">
|
60
|
+
|
61
|
+
<svg width="24" height="24" role="image">
|
62
|
+
|
63
|
+
<use xlink:href="/rs-statics/images/sprite.svg#ic_image"></use>
|
64
|
+
|
65
|
+
</svg>
|
66
|
+
|
67
|
+
</span>
|
68
|
+
|
69
|
+
</button>
|
70
|
+
|
29
71
|
```
|
30
|
-
|
31
|
-
|
32
72
|
|
33
73
|
|
34
74
|
|
35
75
|
下記のようにセレクタを設定しました。
|
36
76
|
|
37
|
-
しかし非表示に
|
77
|
+
しかし非表示に出来ませんでした。
|
38
78
|
|
39
79
|
```
|
40
80
|
|
@@ -44,4 +84,6 @@
|
|
44
84
|
|
45
85
|
$(":button[title='画像の挿入'].tox-tbtn").addClass("hidden");
|
46
86
|
|
87
|
+
$("use[href = '/rs-statics/images/sprite.svg#ic_asset']").parent("tox-tbtn").addClass("hidden");
|
88
|
+
|
47
89
|
```
|
1
説明文変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,17 +14,13 @@
|
|
14
14
|
|
15
15
|
<button aria-label="HTMLの挿入" title="HTMLの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
16
16
|
|
17
|
-
```
|
18
17
|
|
19
|
-
```
|
20
18
|
|
21
19
|
HTML文
|
22
20
|
|
23
21
|
<button aria-label="アセットの挿入" title="アセットの挿入" type="button" tabindex="-1" class="tox-tbtn" aria-disabled="false">
|
24
22
|
|
25
|
-
```
|
26
23
|
|
27
|
-
```
|
28
24
|
|
29
25
|
非表示にしたいHTML文
|
30
26
|
|