回答編集履歴
2
不要なコードを整理
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
$('[id=かご]:contains("ストロベリー") :contains("りんご"):not(:has(*))').each(function(_,e){
|
12
12
|
|
13
|
-
e.textContent =
|
13
|
+
e.textContent = e.textContent.replace( "りんご", "りんごだけアップル" )
|
14
14
|
|
15
15
|
})
|
16
16
|
|
1
不要なコードを削除
test
CHANGED
@@ -10,8 +10,6 @@
|
|
10
10
|
|
11
11
|
$('[id=かご]:contains("ストロベリー") :contains("りんご"):not(:has(*))').each(function(_,e){
|
12
12
|
|
13
|
-
var target = $(e);
|
14
|
-
|
15
13
|
e.textContent = ( e.textContent.replace( "りんご", "りんごだけアップル" ) )
|
16
14
|
|
17
15
|
})
|