質問編集履歴
1
脱字の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -59,11 +59,15 @@
|
|
59
59
|
|
60
60
|
```jquery
|
61
61
|
$(document).on('change','#name',function(){
|
62
|
-
$(cs-serected).children("list0-col2").removeAttr("data-td");
|
62
|
+
$(".cs-serected").children(".list0-col2").removeAttr("data-td");
|
63
|
-
$(cs-serected).children("list0-col3").removeAttr("data-td");
|
63
|
+
$(".cs-serected").children(".list0-col3").removeAttr("data-td");
|
64
|
-
$(cs-serected).children("list0-col4").removeAttr("data-td");
|
64
|
+
$(".cs-serected").children(".list0-col4").removeAttr("data-td");
|
65
|
-
$(cs-serected).children("list0-col5").removeAttr("data-td");
|
65
|
+
$(".cs-serected").children(".list0-col5").removeAttr("data-td");
|
66
|
-
$(cs-serected).children("list0-col6").removeAttr("data-td");
|
66
|
+
$(".cs-serected").children(".list0-col6").removeAttr("data-td");
|
67
|
-
$(cs-serected).children("list0-col7").removeAttr("data-td");
|
67
|
+
$(".cs-serected").children(".list0-col7").removeAttr("data-td");
|
68
68
|
})
|
69
|
-
```
|
69
|
+
```
|
70
|
+
|
71
|
+
追記:ご丁寧な回答ありがとうございます。
|
72
|
+
クラス名を指定する時の.は質問する際に書き忘れてしまいました。
|
73
|
+
大変失礼しました。
|