分類:[.NET 全般]
初めて質問します。
まったくの未経験で仕事でプログラミングの世界に入って一ヶ月たつのですが、
ずっと一人で勉強しているので、行き詰ったので質問させてください。
strutsを使って、以下のようなソースを書いたのですが、
(たぶんJSP上で処理できるんだと思いますが)
チェックボックスをはずしたと同時に テキストボックスに入力した文字をクリアするには
どうすればよろしいでしょうか。
〜〜省略〜〜
<html:radio value="1" property="searchType" onclick="checkradio()" />あああ
<html:radio value="2" property="searchType" onclick="checkradio()" />いいい
<td><html:text property="searchId" styleClass="txtL" /><html:text property="searchId2" styleClass="txtLIME" /></td>
〜〜省略〜〜
<input type="button" name="btnDisp" value="次へ" class="btnDsp" onclick="javascript:JS_Disp()" />
〜〜
function checkradio() {
if(document.forms(0).searchType[0].checked == true){
document.getElementById("searchId").style.display = "block";
document.getElementById("searchId2").style.display = "none";
}else{
document.getElementById("searchId").style.display = "none";
document.getElementById("searchId2").style.display = "block";
}
もうこのへんからワケがわかりません。。。。。。。。。。
ご教授お願いします。
|