我不太了解编码可以帮助我解决这个问题。 如果我输入文本,我只需要一个示例网址,我想将输入添加到示例网址的末尾,然后链接到空白页面
<input type="text" id="suffix4" />
<a class="btn btn-default" href="http://example.com/sell/123/321/" onclick="document.location.href = $(this).attr('href')+$('#suffix4').val(); return false;">sell it</a>
答案 0 :(得分:1)
设置document.location.href将始终在当前页面中加载代码。
尝试:
onclick="window.open($(this).attr('href')+$('#suffix4').val()); return false;"
答案 1 :(得分:0)
请参阅http://www.w3schools.com/tags/att_a_target.asp
向下滚动,直到看到target =“_ blank”