(创建页面,内容为“<!DOCTYPE html> <html> <head> <title>图片搜索</title> <style> body { display: flex; flex-direction: column; a…”) |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
<html> | <html> | ||
<head> | <head> | ||
| 第30行: | 第29行: | ||
<body> | <body> | ||
<div class="search-container"> | <div class="search-container"> | ||
<input type="text" id="searchInput" placeholder=" | <input type="text" id="searchInput" placeholder="请输入你要查询的车牌号"> | ||
<button onclick="searchImage()">搜索</button> | <button onclick="searchImage()">搜索</button> | ||
</div> | </div> | ||
| 第38行: | 第37行: | ||
function searchImage() { | function searchImage() { | ||
const input = document.getElementById('searchInput').value; | const input = document.getElementById('searchInput').value; | ||
const imageUrl = ` | const imageUrl = `https://w.zhbus.org/images/thumb/0/07/%E6%B9%96%E5%BF%83%E8%B7%AF%E5%8F%A3520.jpg/${encodeURIComponent(input)}.jpg`; | ||
const imgElement = document.getElementById('resultImage'); | const imgElement = document.getElementById('resultImage'); | ||
2025年2月28日 (五) 09:12的版本