用html jsp 语言设计。 用日期查询星座,请问我的问题出在哪里

用html jsp 语言设计。 用日期查询星座,请问我的问题出在哪里,第1张

截图的代码看不清。

提供示例代码供参考:

function xingzuo() { 

var start = 1901, date=document.getElementById("txtDay").value, month=document.getElementById("txtMonth").value

with (document.getElementById("txtXZ")){ 

if (month == 1 && date >=20 || month == 2 && date <=18) {value = "水瓶座"} 

//if (month == 1 && date > 31) {value = "Huh?"} 

if (month == 2 && date >=19 || month == 3 && date <=20) {value = "双鱼座"} 

//if (month == 2 && date > 29) {value = "Say what?"} 

if (month == 3 && date >=21 || month == 4 && date <=19) {value = "白羊座"} 

//if (month == 3 && date > 31) {value = "OK. Whatever."} 

if (month == 4 && date >=20 || month == 5 && date <=20) {value = "金牛座"} 

//if (month == 4 && date > 30) {value = "I'm soooo sorry!"} 

if (month == 5 && date >=21 || month == 6 && date <=21) {value = "双子座"} 

//if (month == 5 && date > 31) {value = "Umm ... no."} 

if (month == 6 && date >=22 || month == 7 && date <=22) {value = "巨蟹座"} 

//if (month == 6 && date > 30) {value = "Sorry."} 

if (month == 7 && date >=23 || month == 8 && date <=22) {value = "狮子座"} 

//if (month == 7 && date > 31) {value = "Excuse me?"} 

if (month == 8 && date >=23 || month == 9 && date <=22) {value = "室女座"} 

//if (month == 8 && date > 31) {value = "Yeah. Right."} 

if (month == 9 && date >=23 || month == 10 && date <=22) {value = "天秤座"} 

//if (month == 9 && date > 30) {value = "Try Again."} 

if (month == 10 && date >=23 || month == 11 && date <=21) {value = "天蝎座"} 

//if (month == 10 && date > 31) {value = "Forget it!"} 

if (month == 11 && date >=22 || month == 12 && date <=21) {value = "人马座"} 

//if (month == 11 && date > 30) {value = "Invalid Date"} 

if (month == 12 && date >=22 || month == 1 && date <=19) {value = "摩羯座"} 

//if (month == 12 && date > 31) {value = "No way!"} 

}

截图看不太清,经仔细辨别,发现有个明显的逻辑错误:

从上图看,txtDay 应该对应的是 txtMonth 对应的是 


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7572121.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-07
下一篇 2023-04-07

发表评论

登录后才能评论

评论列表(0条)

保存