单选按钮列表的Javascript

单选按钮列表的Javascript

本文介绍了单选按钮列表的Javascript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何编写以下代码的Javascript?

How to write Javascript For following code?

if (((rbShapeList.SelectedIndex == 0) || (rbShapeList.SelectedIndex == 1)) && rblistColor.SelectedIndex == 1)     ctl00_ContentPlaceHolder1_DxPanel1_rbShapeList	  ctl00_ContentPlaceHolder1_DxPanel3_rblistColor
            {
                PanShape.Visible = false;
                rbShapeList.RepeatDirection = RepeatDirection.Vertical;
                rbShapeList.Height = 66;

                PanFancyShape.Height = 134;

                PanCut.Enabled = true;
            }

推荐答案


这篇关于单选按钮列表的Javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 23:05