Javascript 隱藏或顯示某區域
<script language="javascript" type="text/javascript">
function ExpandGridView(num)
{
var prefix = "ctl00_ContentPlaceHolder1_";
var gvQuestion = document.getElementById(prefix+'gvQuestion'+num);
var imgQuestion = document.getElementById(prefix+'imgQuestion'+num);
if(gvQuestion.style.display == "none")
{
gvQuestion.style.display = "block";
imgQuestion.src = "../images/lines/CollapseMinus.gif";
imgQuestion.alt='Click to hidden questionnaire.';
}
else
{
gvQuestion.style.display = "none";
imgQuestion.src = "../images/lines/CollapsePlus.gif";
imgQuestion.alt='Click to display questionnaire.';
}
}
</script>
function ExpandGridView(num)
{
var prefix = "ctl00_ContentPlaceHolder1_";
var gvQuestion = document.getElementById(prefix+'gvQuestion'+num);
var imgQuestion = document.getElementById(prefix+'imgQuestion'+num);
if(gvQuestion.style.display == "none")
{
gvQuestion.style.display = "block";
imgQuestion.src = "../images/lines/CollapseMinus.gif";
imgQuestion.alt='Click to hidden questionnaire.';
}
else
{
gvQuestion.style.display = "none";
imgQuestion.src = "../images/lines/CollapsePlus.gif";
imgQuestion.alt='Click to display questionnaire.';
}
}
</script>
浙公网安备 33010602011771号