gpt4 book ai didi

javascript - 我有一个单选按钮可以更改我页面上的 html 内容,但在一种情况下无法使其正常工作

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

这是有问题的应用程序:

http://codepen.io/illpill/pen/pPpWOZ

代码困惑的地方:

$(document).ready(function() {
getsWeather('seattle, wa', 'f');
$("#locSearchBtn").click(function() {
getsWeather(document.getElementById('locSearch').value, 'f');
return false;
});
$("#locSearchForm").submit(function() {
getsWeather(document.getElementById('locSearch').value, 'f');
return false;
});
$('input[type=radio][name=measurement]').change(function() {
if (this.value == 'far') {
getsWeather(document.getElementById('locSearch').value, 'f');
} else if (this.value == 'cel') {
getsWeather(document.getElementById('locSearch').value, 'c');
}
});
});

单选按钮应该将温度从 C 更改为 F。但是,我将其编码为超出搜索栏中的值,但在初始 View 下,搜索栏中没有任何值。如何访问 simpleweather 框架内的城市并使此代码更有效地工作?另外,帮助我使整个事物淡入淡出并看起来更平滑的加分点。我似乎不知道该怎么做。我将 .fadeIn() 添加到许多不同的地方,但没有任何效果。

最佳答案

要进行转换,您可以使用:

.today{
-webkit-transition: background-color 5000ms ease-out 1s;
-moz-transition: background-color 5000ms ease-out 1s;
-o-transition: background-color 5000ms ease-out 1s;
transition: background-color 5000ms ease-out 1s;
}

要插入初始值 onload,您可以在 HTML 中使用它:

<body onload="insertvalue()">

关于javascript - 我有一个单选按钮可以更改我页面上的 html 内容,但在一种情况下无法使其正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43971845/

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