This article shares the specific code of js to implement a simple English-Chinese dictionary for your reference. The specific content is as follows 1. ObjectivesUse js to implement a simple English-Chinese dictionary query function to achieve the effect of single word search 2. Implementation steps1. Use a js file to save all the words in the English-Chinese dictionary as string format 2. In another js file or html page script, separate the string of the file containing the vocabulary into an array, add the Map method, and traverse it 3. Match the contents of the search box with the array elements and return the results 3. Code Module1.html part <div id="div1"> <input id='word' type="text" placeholder="Enter English word" /> <div id='desc'></div> </div> 2.css part #div1 { width: 200px; height: 200px; padding: 50px; background-color: lightgray; border: 1px solid black; margin: 100px auto } #word { width: 200px; height: 30px; font-size: 18px; } #desc { width: 200px; height: 150px; margin-top: 20px; background-color: lightgreen } 3.js part <script src='demo.js'></script> <script> // Split the string into an array by line breaks let arr = word.split("\n"); // Create Map method let map = new Map(); // Traverse the array for (var i = 0; i < arr.length - 1; i += 2) { map.set(arr[i].substring(1), arr[i + 1].substring(6)); } window.onload = function () { let oWord = document.getElementById("word"); let oDesc = document.getElementById("desc"); oWord.onkeyup = function () { let value = map.get(this.value); if (value) { oDesc.innerHTML = value; } else { oDesc.innerHTML = "No such word found"; } } } </script> 4.js external link vocabulary string fragment screenshot 4. RenderingThe above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed tutorial on installing MariaDB on CentOS 8
>>: A summary of the knowledge points of database indexing. Everything you need to know is here.
Background Recently, when writing SQL statements,...
Preface The default database file of the MySQL da...
Table of contents 1. Create a watermark Js file 2...
MySQL Performance Optimization MySQL is widely us...
Table of contents Algorithmic Strategy Single-nod...
Use of clip-path polygon The value is composed of...
To search for RocketMQ images, you can search on ...
This article describes how to build a Nexus priva...
The reason is simple: In HTML documents, multiple ...
Table of contents 1. Ref and reactive 1. reactive...
When processing batch updates of certain data, if...
Floating ads are a very common form of advertisin...
To export MySQL query results to csv , you usuall...
Table of contents Introduction What does an itera...
This article records the detailed process of down...