gpt4 book ai didi

javascript - if 语句不起作用/Javascript/Jquery

转载 作者:行者123 更新时间:2023-12-03 00:28:22 25 4
gpt4 key购买 nike

我不明白为什么我的网站不通过 if 语句。目标是当我单击按钮时显示图像,但它卡住了。如果有人能提供帮助,我会很高兴:D

function showllum() {
$.get('llum.txt', function(data) {
alert(data);
if (data === "Llum") {
alert("1");
$('#showdada').empty();
$('#showdada').prepend($('<img>', {
id: 'llumpng',
src: 'llum.png'
}

))
} else if (data === "Molta Llum") {
alert("2");
$('#showdada').empty();
$('#showdada').prepend($('<img>', {
id: 'moltallumpng',
src: 'molta llum.png'
}

))

} else if (data === "Poca Llum") {
alert("3");
$('#showdada').empty();
$('#showdada').prepend($('<img>', {
id: 'pocallumpng',
src: 'poca llum.png'
}

))

} else if (data === "Fosques") {
alert("4");
$('#showdada').empty();
$('#showdada').prepend($('<img>', {
id: 'fosquespng',
src: 'fosques.png'
}

))

}})}

最佳答案

您需要添加数据类型 - http://api.jquery.com/jQuery.ajax/

$(document).ready(function() {
$.ajax({
url : "helloworld.txt",
dataType: "text",
success : function (data) {
if(data === '*'){...}
}
});
});

但即使您更改为这一点,您也不会从本地驱动器获得结果,您将需要一个实际的 http 服务器来提供静态文本文件。请检查网络请求并在此处更新您收到的响应。

关于javascript - if 语句不起作用/Javascript/Jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53982761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com