本文介绍了如何使用变量传递显示属性....的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用以下代码控制表格行的显示状态。


< TR id =" CCRow" style =" DISPLAY:none">


而不是硬编码" none"上面,我想使用

隐藏输入控件来更改该值。怎么做?


我在下列情况下收到错误。


< TR id =" CCRow" style =" DISPLAY:"

''document.frmMyPage.hdnRowDisplayStatus.value''>





< TR id =" CCRow" style =" DISPLAY:"

= document.frmMyPage.hdnRowDisplayStatus.value>


我在这里找不到要输入的语法。

我使用的是IE 5.0 +

请咨询。


本杰明



I am controlling the display status of a table row using the following code.

<TR id="CCRow" style="DISPLAY:none">

Instead of hard coding "none" above, I would like to change that value using
a hidden input control. How to do that?

I am getting the error in the following case.

<TR id="CCRow" style="DISPLAY:"
''document.frmMyPage.hdnRowDisplayStatus.value''>

or

<TR id="CCRow" style="DISPLAY:"
=document.frmMyPage.hdnRowDisplayStatus.value>

I am not getting the syntax here what to type.
I am using IE 5.0+
Please advice.

Benjamin



推荐答案




< TR id =" CCRow" style =" DISPLAY:<%= yourVariable =>">


-Darrel



<TR id="CCRow" style="DISPLAY:<%=yourVariable=>">

-Darrel






< TR id =" CCRow" style =" DISPLAY:<%= yourVariable =>">

-Darrel



<TR id="CCRow" style="DISPLAY:<%=yourVariable=>">

-Darrel



这篇关于如何使用变量传递显示属性....的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 09:45