<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title> <script type="text/javascript"> function acction(){ var wenti=confirm("你知道吗?") if(wenti==true) { document.write("你知道什么"); } else { document.write("你怎么什么都不知道"); } } </script></head><body> <input name="button" type="button" value="你知道吗" onclick="acction()"/></div></body></html>
8 回答
_Forliberty
TA贡献3条经验 获得超2个赞
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>test</title>
</head>
<body>
<div id="box">
<input type="button" value="click" id="btn" onclick="action()" />
<p id="msg"></p>
</div>
<script type="text/javascript">
function action(){
var wenti=confirm("你知道吗?")
if(wenti==true)
{
document.getElementById("msg").innerHTML="你知道什么";
}
else
{
document.getElementById("msg").innerHTML="你怎么什么都不知道";
}
}
</script>
</body>
</html>
不知道是不是想要这么个效果?另外,题主的action方法单词拼错…
淡雅的默
TA贡献102条经验 获得超139个赞
<input name="button" type="button" value="你知道吗" onclick="acction()"/ style="position:absolute;left:50%;top:50%;height:50%;width:100px;height:30px;margin:-15px 0 0 -50px">
添加回答
举报
0/150
提交
取消