$(function(){
$("button").click(function(){
$("#container").html(`<iframe src="https://www.baidu.com/s?wd=${encodeURIComponent($("#str").val())}&si=zhidao.baidu.com&ct=2097152">`)
});
});
<textarea id="str"></textarea>
<br>
<button>搜索</button>
<br>
<div id="container">
搜索百度知道,检查有无重复内容
#str{
width:500px;
height:100px;
}
iframe{
width:720px;
height:700px;
}