gpt4 book ai didi

javascript - 将值重新分配给变量

转载 作者:行者123 更新时间:2023-11-28 04:49:31 25 4
gpt4 key购买 nike

我觉得我一定错过了一些非常明显的东西。我从 div 中获取文本并使用 if 语句将变量的值重新分配给“javascript”(如果它是“HTML”),但这似乎根本不起作用。

有人可以帮我解决这个问题吗?

var currentChoice = $('#contentSelector').text();      
var newChoice = currentChoice;
if (currentChoice == 'HTML') {
currentChoice = 'Javascript';
};
alert(currentChoice);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="contentSelector"> HTML </div>

谢谢

最佳答案

“HTML”周围有空格,因此它可能不匹配。 “HTML”不同于“HTML”。

这样做就可以了 $.trim($('#contentSelector').text());

关于javascript - 将值重新分配给变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35638327/

25 4 0
文章推荐: c# - 30% 的时间解决方案重建失败
文章推荐: javascript - html页面中的触摸事件和鼠标事件
文章推荐: javascript - 如果使用 :nth-child 超过 3 个,则每个相同父 div 的 jQuery 切换嵌套 div
文章推荐: html - 什么 CSS 可以用
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com