Simple implementation code of native js three-level linkage
The example in this article shares a js weather query application for your reference. The specific content is as follows
Implementation function: display the weather conditions of the user's city when opening the web page. Enter a city in the input box to query other cities.
Implementation process: First call the API of Baidu Map to obtain the city where the user is located, and then call the weather API of aggregated data to put the data on the page. Since ajax does not support cross-domain, jsonp is used to call data.
The implementation principle is relatively simple, and the HTML and CSS are relatively long. I will only post the js code. If you want to see the complete code,
//调用jsonp函数请求当前所在城市 jsonp('https://api.map.baidu.com/api?v=2.0&ak=Dv1NMU23dh1sGS9n2tUouDEYY96Dfzh3&s=1&callback=getCity'); window.onload=function(){ //请求天气车数据 btn.onclick=function (){ jsonp(createUrl()); } }; function getCity(){ function city(result){ jsonp(createUrl(result.name)); } var cityName = new BMap.LocalCity(); cityName.get(city); } // 数据请求函数 function jsonp(url){ var script = document.createElement('script'); script.src = url; document.body.insertBefore(script, document.body.firstChild); document.body.removeChild(script); } //数据请求成功回调函数,用于将获取到的数据放入页面相应位置 function getWeather(response) { var oSpan = document.getElementsByClassName('info'); var data = response.result.data; oSpan[0].innerHTML=data.realtime.city_name; oSpan[1].innerHTML=data.realtime.date; oSpan[2].innerHTML='星期'+data.weather[0].week; oSpan[3].innerHTML=data.realtime.weather.info; oSpan[4].innerHTML=data.realtime.weather.temperature+'℃'; oSpan[5].innerHTML=data.realtime.wind.direct; oSpan[6].innerHTML=data.realtime.weather.humidity+'%'; oSpan[7].innerHTML=data.realtime.time; oSpan[8].innerHTML=data.life.info.ziwaixian[0]; oSpan[9].innerHTML=data.life.info.xiche[0]; oSpan[10].innerHTML=data.life.info.kongtiao[0]; oSpan[11].innerHTML=data.life.info.chuanyi[0]; var aDiv = document.getElementsByClassName('future_box'); for(var i=0; i<aDiv.length; i++){ var aSpan = aDiv[i].getElementsByClassName('future_info'); aSpan[0].innerHTML = data.weather[i].date; aSpan[1].innerHTML = '星期'+data.weather[i].week; aSpan[2].innerHTML =data.weather[i].info.day[1]; aSpan[3].innerHTML = data.weather[i].info.day[2]+'℃'; } changeImg(response); } //根据获取到的数据更改页面中相应的图片 function changeImg(data){ var firstImg = document.getElementsByTagName("img")[0]; var firstWeatherId=data.result.data.realtime.weather.img; chooseImg(firstWeatherId,firstImg); var aImg = document.getElementById('future_container').getElementsByTagName('img'); for(var j=0; j<aImg.length; j++){ var weatherId = data.result.data.weather[j].info.day[0]; chooseImg(weatherId,aImg[j]); } } //选择图片 function chooseImg(id,index){ switch(id){ case '0': index.src='images/weather_icon/1.png'; break; case '1': index.src='images/weather_icon/2.png'; break; case '2': index.src='images/weather_icon/3.png'; break; case '3': case '7': case '8': index.src='images/weather_icon/4.png'; break; case '6': index.src='images/weather_icon/6.png'; break; case '13': case '14': case '15': case '16': index.src='images/weather_icon/5.png'; break; case '33': index.src='images/weather_icon/7.png'; break; default: index.src='images/weather_icon/8.png'; } } //根据城市名创建请求数据及url function createUrl(){ var cityName = ''; if(arguments.length == 0) { cityName = document.getElementById('text').value; }else{ cityName = arguments[0]; } var url = 'https://op.juhe.cn/onebox/weather/query?cityname=' + encodeURI(cityName) + '&key=1053d001421b886dcecf81a38422a1a2&callback=getWeather'; return url; }
is a simple small demo, but there are still many shortcomings. We welcome everyone's suggestions for improvement.
Tomorrow I will update some of the problems encountered and their solutions, please pay attention.
The above is the entire content of this article. I hope it will be helpful to everyone's learning. I also hope that everyone will support the PHP Chinese website.
For more articles related to the simple implementation code of native js three-level linkage, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the
