制作添加链接的表格

如何创建将表单中的任何内容添加到链接末尾的表单?

例如:

当我在表单中输入“test”时,它会将您带到http://example.com/item/test 另一个示例:当我输入“hello”时,它会将我带到http://dictionary.com/words?=hello 这可能吗?如果是我该怎么做?我想将其集成到我的网站中。我使用 Javascript 还是 HTML?


青春有我
浏览 235回答 2
2回答

慕田峪7331174

尝试这种方法,即使不推荐,但由于您的问题对您想要的内容并不十分具体(取决于您想要实现的复杂性),因此它是:location.href = location.href += "/"  += document.getElementById("YourInputIDHere").value;

慕田峪9158850

试试这个函数,表单值就是参数。function addStringToEndOfLink(param){    url = location.href;    url += (url.split('?')[1] ? '/':'?') + param;    return url;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript