0

我在使用搜索框时遇到问题。它仅在我点击“Enter”时有效,而不是当我点击“搜索”按钮时..

以下是代码:

(php)

<form id="search" action="search.php" method="GET">
                                <input type="text" name="s">  
    <a class="submit" onClick="document.getElementById('form').submit()"></a>

(js)

$(function(){
var s=location.search.replace(/^\?.*s=([^&]+)/,'$1')
    ,form=$('#search')
    ,form=$('#search-form')
    ,input=$('input[type=text]',form)
    ,results=$('#search-results').height(0)
    ,src='search/results.php'
    ,ifr=$('<iframe width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" allowTransparency="true"></iframe>')

if(results.length)      
    ifr     
        .attr({
            src:src+'?s='+s
        })
        .appendTo(results)
    ,input
        .val(decodeURI(s))

window._resize=function(h){     
    results
        .height(h)
}

})

提前感谢您的帮助!;)

4

1 回答 1

1

我认为document.getElementById('form')应该是:

document.getElementById('search')

这就是我立即弹出的内容。

于 2013-03-16T19:47:16.400 回答