作者Chenson (....................)
看板Web_Design
标题Re: [问题] 请问javascript
时间Fri Oct 15 23:04:18 2004
※ 引述《jabbar (暑假)》之铭言:
: 我想做
: ⊙□ 一个radio buttom搭配一个textfield
: 一开始text是不能写入的
: 当按下radio buttom以後才能写入
: 请问这样的javascript要如何写呢?
: thanks~
从104网站上慢慢精简出来的
若有侵权请告知 谢谢
<HTML>
<TITLE>104学生专区</TITLE>
<META http-equiv=Content-Type content="text/html; charset=big5">
<SCRIPT language=JavaScript>
<!--
function sel(no)
{
var urls='document.popForm.types['+no+'].checked==true';
var urls2='document.popForm.types['+no+'].value';
var links='document.popForm.job'+no+'.disabled=false';
document.popForm.types1.value=eval(urls2);
if(urls)
{eval(links);}
if(no==0)
{document.popForm.job1.disabled=true;
document.popForm.job2.disabled=true;}
if(no==1)
{document.popForm.job0.disabled=true;
document.popForm.job2.disabled=true;}
if(no==2)
{document.popForm.job0.disabled=true;
document.popForm.job1.disabled=true;}
}
//-->
</SCRIPT>
<body>
<FORM name=popForm action=xxx.php method=post>
<INPUT type=hidden name=types1>
<INPUT onclick=sel(0) type=radio value=1 name=types>全职
<input type=text disabled name=job0> <br>
<INPUT onclick=sel(1) type=radio value=2 name=types>兼职
<input type=text disabled name=job1> <br>
<INPUT onclick=sel(2) type=radio value=3 name=types>家教
<input type=text disabled name=job2>
</FORM>
</BODY>
</HTML>
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 220.142.105.186