main.php
1<form id="main_form"> 2//(中身はtableでinput達を囲っている。) 3<?php echo $this->element('Apple'); ?> 4<?php echo $this->element('Orange'); ?> 5</form> 6<button>送信</button>
main.php
1if (条件) { 2 document.getElementById('Apple').style.display = ""; 3 document.getElementById('Orange').style.display = "none"; 4 } else { 5 document.getElementById('Apple').style.display = "none"; 6 document.getElementById('Orange').style.display = ""; 7 } 8・ 9・ 10・ 11let AppleformElements = document.forms.apple; 12let OrangeformElements = document.forms.orange; 13 14AppleformElements.submit_id.disabled = true; 15OrangeformElements.submit_id.disabled = false;
参考サイト
リンク内容
↓
main.php
1~~<form>~~ 2//(中身はtableでinput達を囲っている。) 3<?php echo $this->element('Apple'); ?> 4<?php echo $this->element('Orange'); ?> 5~~</form>~~ 6<button>送信</button>
AplleとOrange.php中に、formにidをつけ設置
Aplle.php(Orangeもidのみ変更)
1<form id="Apple_id"> 2<table> 3複数のinputやradioを設置。 4</table> 5</form>
buttonはmain.phpに設置しています。
ーーーーーーーーーーーーーーーーーーーーーー
やりたいこと
noneにより、画面上見えなくした上で(成功)disableでpostもできないようにしたい。(未実施)
nontと同時にdisableにしたい。
上記のコードは途中なので、訂正していただけませんか。何か足りない部分があれば追記します。
回答2件
あなたの回答
tips
プレビュー