// 获取当前链接中的查询参数
const params = new URLSearchParams(window.location.search);
// 将查询参数解码并输出到文本框中(去掉等号)
document.getElementById("文本框元素id").value = decodeURIComponent(params.toString().replace(/=/g, ""));
// 获取当前链接中的查询参数
const params = new URLSearchParams(window.location.search);
// 将查询参数解码并输出到文本框中(去掉等号)
document.getElementById("文本框元素id").value = decodeURIComponent(params.toString().replace(/=/g, ""));
info 还没有任何评论,你来说两句呐!