html将input参数拼接到a标签
时间: 2023-03-28 12:03:52 浏览: 132
将name值一样的input值拼接起来
的href属性中,如何实现跳转页面并传递参数?
可以使用JavaScript来实现。首先,获取input的值,然后将其拼接到a标签的href属性中,最后使用window.location.href来跳转页面。具体代码如下:
var inputVal = document.getElementById("inputId").value;
var aTag = document.getElementById("aId");
aTag.href = "targetPage.html?param=" + inputVal;
window.location.href = aTag.href;
阅读全文