现在它只在同一个窗口中打开,我希望它在提交时在新窗口中打开。
以下是头脑中的内容:
<script type="text/javascript">
function getURL(val){
base = 'http://www.domain.com/';
location = base + val;
return false;
}
</script>
以下是身体中的内容:
<form id="form1" name="form1" method="post" action="" onsubmit="return getURL(this.url.value)">
<label>
<input type="text" name="url" />
</label>
<label>
<input type="submit" name="Submit" value="Submit" />
</label>
</form>
答案 0 :(得分:0)
答案 1 :(得分:0)
如果您想在javascript中执行此操作,但可能会被弹出窗口阻止程序阻止。
window.open(location);