这是我的编码..我做错了什么。我在 6 号,但它不起作用 有人可以看看这个并给我一些帮助吗?谢谢
<html>
<head>
<title> My Homework </title>
</head>
<body>
<div style="width:400px; height:200px" id="firstdiv">
<br /> <br /><center>Well Hi there! <br/> Answer the prompt to see what happens next.</center>
</div>
<script type="text/javascript">
var moquestion = window.prompt("What is the capital of Missouri?","");
if (moquestion.length < 1) {
<div style="width:400px; height:200px" id="sorrydiv">
<br /> <br /> <h1><center>Sorry you don't feel like playing.<br />The capital of Missouri is Jefferson City</center></h1>
</div>
}
</script>
</body>
</html>
下面是作业
- 创建一个包含所有基本 HTML 标记的网页。
- 在 中
<body>
,创建一个<div>
带有元素 id 的标签。 <div>
在标签中插入一些文本。- 在此下方添加您的脚本,
<div>
以便在加载之前它不会尝试运行。 - 使用 window.prompt 方法询问“密苏里州的首府是哪里?” 确保没有为用户显示默认答案。
- 检查以确保返回字符串的长度属性不小于 1。如果为空,请在
<div>
标签中写入类似以下内容:“对不起,您不想玩。密苏里州的首府是杰斐逊城。”</li> - 如果字符串不为空,请使用 window.confirm 方法询问用户:“这是您的最终答案吗?”
- 如果他们确认,请在标签中写入类似于以下内容的字符串:“密苏里州的首府是”+ myanswer +“。你这么说。”</li>
- 如果他们取消,再问一次:“那么密苏里州的首府是哪里?” 这一次,写下没有错误检查的答案。