回答編集履歴
1
sample
answer
CHANGED
@@ -1,3 +1,13 @@
|
|
1
1
|
left.htmlのhtml部分はどうなってますか?
|
2
2
|
またleft.htmlのjavascriptとなっていますが、
|
3
|
-
id=mainはあくまでもparent.htmlの中のidでは?
|
3
|
+
id=mainはあくまでもparent.htmlの中のidでは?
|
4
|
+
|
5
|
+
#追記
|
6
|
+
left.htmlのjavasriptに以下追記してください
|
7
|
+
```javascript
|
8
|
+
$(parent.main.document).on('click',function(){
|
9
|
+
var flg=($(this).find('input[type=checkbox]:checked').length==0);
|
10
|
+
$("#send").prop('disabled',flg);
|
11
|
+
});
|
12
|
+
|
13
|
+
```
|