我新手很多不会的请见谅,我编写一个剪刀石头布的一个代码但是出现了request类型不配,这是为什么呢
以下是部分代码
<input name="option" type="radio" value="1" checked="checked"/>
剪刀</p>
<p>
<label></label>
<input type="radio" name="option" value="2" />
石头 </p>
<p>
<input type="radio" name="option" value="3" />
布</p>
</form> </td>
<td><a href="#"><img src="5.jpg" width="95" height="81" border="0" onClick="pk()"/></a></td>
<script language="vbscript">
function pk()
dim x,y
randomize
x = int(rnd()*3)+1
y = request("option")
if x=1 then
option1.value= 1
elseif x =2 then
option1.value = 2
else
option1.value = 3
end if
if x- y = 1 then
msgbox "电脑出的是 玩家胜出 "
elseif y- x = 2 then
msgbox "电脑出的是 玩家胜出"
elseif x- y = 0 then
msgbox "打平手"
end if
end function