作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当程序运行时,我希望出现一个提示,其中包含三列火车的列表 - (L) 火车、(N) 火车、(S)ix 火车,并请求用户做出选择。
如果用户输入 L,我想要一个警报输出一条包含火车名称的消息和一个包含该火车所有站点的控制台日志输出。
这是我的代码,但当我在浏览器上测试时没有得到任何结果。我走在正确的道路上吗?
var lTrain = ["8th Ave", "6th Ave", "Union Square", "3rd Ave", "1st Ave", "Bedford Ave"];
var nTrain = ["Times Square", "Herald Square", "28th St", "23rd Street", "Union Square"];
var sTrain = ["Grand Central", "33rd St", "28th St", "23rd St", "Union Square", "Astor Place"];
var trains = alert('The (L) Train, The (N) Train, The (S)ix Train');
var selection = prompt("Select your train");
if (selection = L) {
prompt("The L Train");
console.log(lTrain)
}
if (selection = N) {
prompt("The N Train");
console.log(nTrain)
}
if (selection = S) {
prompt("The S Train");
console.log(sTrain)
}
最佳答案
关于javascript - 基本的 javascript 帮助(获取火车站的输出),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33190440/
我是一名优秀的程序员,十分优秀!