1、默认页面
document.getElementById("myInput").addEventListener("keydown", function(event) { // 按下Enter回车键触发时间 if (event.code === "Enter") { event.preventDefault(); //阻止默认行为,比如提交表单等操作 window.location.href = '/search.html?s=' + $("#myInput").val() } });
2、搜索页面
const url = new URL('https://www.example.com/?s=25'); const params = new URLSearchParams(url.search); // 通过 get() 方法获取指定参数的值 const value = params.get('s'); console.log(`输出结果: ${value}`); //输出结果: 25 console.log(`${value}`) //从接口获取数据 $.ajax({ url: '/search.php?name=' + value, type: 'POST', data: {}, success: function(res) { if(res && res.code == 10000){ console.log('获取数据!') }else{ console.log('获取失败!') } }, error: function() { console.log('请求失败输出'); } });
上面是“javascript按回车键触发执行事件(跳到搜索页面执行)”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_15347.html
workflows工作流
- 水中一台精致而破旧的老式电视鱼缸ComfyUI工作流
- 一只猫捧着一条鱼ComfyUI工作流
- 金色玫瑰花comfyui工作流
- 羚羊安上小白兔的门牙ComfyUI工作流
- 一种长着彩虹翅膀的虫子comfyui工作流
- 王家卫电视剧繁花海报效果comfyui工作流
- 图生图生成动漫效果ComfyUI工作流
- 一张由表情符号组成的照片ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!