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 に答える