我在wordpress.com网站上添加了一个自定义html块,并编写了一些简单的代码来充当搜索小部件。
我尝试了很多事情。我尝试使按钮运行脚本函数,尝试使该函数侦听按钮,尝试使用href链接(如果尝试得更努力,可能会更好)。
<input type="text" id="input" value="Search...">
<br>
<button onclick="window.location.href = 'https://vinelings.home.blog/?s=' + document.getElementById('input').value"> Search</button>
我希望它使按钮抓住输入文本,然后将选项卡重定向到该词条的搜索。 不知道这是否是wordpress.com问题,是否可以解决?
代码:https://imgur.com/iRvb29V.jpg 结果:https://imgur.com/GUcwIg9.jpg
编辑:
我正在使用Custom HTML
块。
我的主题是ALtoFocus。