Heim  >  Artikel  >  Web-Frontend  >  js常见表单应用技巧_表单特效

js常见表单应用技巧_表单特效

WBOY
WBOYOriginal
2016-05-16 19:06:52808Durchsuche

显示框架内的指定位置




改变文本框的属性(确定按钮)

  
  

<script> <BR><!-- <BR>function tot() <BR> { <BR> if (document.form1.name.disabled == true) <BR> { <BR> document.all.name.disabled=false; <BR> } <BR> else <BR> { <BR> document.all.name.disabled=true; <BR> } <BR> } <br><br>//--> <BR></script>


注:以下的readOnly的O必须为大写r必须为小写
<script> <BR><!-- <BR>function tot() <BR> { <BR> if (document.all.name.readOnly == true) <BR> { <BR> document.all.name.readOnly=false; <BR> } <BR> else <BR> { <BR> document.all.name.readOnly=true; <BR> } <BR> } <br><br>//--> <BR></script>

改变文本框的属性(单选按钮)

<script> <BR><!-- <BR>function cStyleshow() <BR>{ <BR>document.all.name.disabled=false; <br><br>} <BR>function cStylehidde() <BR>{ <br><br>document.all.name.disabled=true; <br><br>} <br><br>--> <BR></script>

1
2





改变文本框的属性(下拉列表)

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn