-2
我有以下窗口打開方法:Window.Open與搜索
<script>
function searchForm(form){
window.open("test.php?Search=", "newwindow", "scrollbars=yes", "width=800", "height=600", + form.s.value)
return false;
}
</script>
<form method="get" onsubmit="return searchForm(this)" class="form-inline" role="form" />
<div class="form-group">
<input class="form-control input-sm" name="s" type="text" onFocus="if (this.value == 'Search Events') {this.value='';" />
</div>
<button type="submit" class="btn btn-text">Lookup Existing Data</button>
</form>
我希望新的窗口使用上述參數打開,但是當我將它們添加,它打破了在搜索的數據,如果我刪除了參數值,它可以工作,但窗口會在新選項卡中打開。
如果你在'+ form.s.value'中刪除'+'會怎麼樣? – putvande
如果在'open()'末尾添加'form.s.value'到***第一個參數***(在'Search ='後面)而不是隨機地怎麼辦? – deceze
嗨putvande,我試過,但它仍然無法正常工作,它只是使用參數打開新窗口,但剝去了搜索條件。 – Lee