我希望有一个范围的程序,最后我想给用户所有的结果。
首先是范围
的Javascript :
function imgShow(Target)
{
for(var i=1; i<=images; i++)
{
if(i != Target)
document.getElementById('img' + i).style.display = 'none';
else
document.getElementById('img' + i).style.display = 'block';
}
}
HTML
<input type="range" id="slider" max="<?php echo ($images*1); ?>" min="1"
value="1" onchange="imgShow(parseInt(this.value/1));" />
<output>
<?php
for ($i=0; $i<$images; $i++){
$image = $files[$i];
echo '<div id="img' . ($i+1) . '" class="photo" style=""><img src="' . $image . '" /></div>';
}
?>
</output>
上面的代码是好的(我只是写这个,所以你知道我使用了哪些变量)
您会看到我每次更改图片时都会给出范围的值。然后我的问题,我需要将它放在一个数据库中,所以我首先要在textarea中显示它,以便用户知道他们在测试中得分。
echo '<form action="'. $_SERVER["PHP_SELF"] .'" method="post">';
echo 'Solution:<br>';
echo '<textarea name="message"></textarea><br>';
echo '</form>';
我想我需要在textarea之间写点什么,但我不知道是什么。已经尝试了一些东西。是echo,因为我在“if($ _ SERVER [REQUEST_METHOD] =='POST')”的其他地方执行此操作。 我希望有人可以帮助我。
答案 0 :(得分:3)
textarea
元素在其中具有值,而不在value
属性中。
即
<textarea> value here </textarea>