87,996
社区成员




<input type="text" name="aa"></input>
<input type="button" name="bb" onclick="window.location.href='xxx_' + document.all.aa.value+'.html'"></input>
//button加如下事件
OnClientClick="GotoURL()"
//js函数如下
function GotoURL()
{
var=url+document.getElementById('tbURL').value;
window.open(url)
}