在新页面中打开链接

时间:2018-03-07 14:02:25

标签: search

我将_blank放在此搜索脚本中的哪个位置?

<script>
$(document).ready(function(){

    $('#txtSearch').autocomplete({
        source: "post_search.php",
        minLength: 2,
        select: function(event, ui) {
            var url = ui.item.id;
            if (url != '#') {
                location.href = url
            }
        },
        open: function(event, ui) {
            $(".ui-autocomplete").css("z-index", 1000)
        }
    })

});
</script>

1 个答案:

答案 0 :(得分:0)

您可以尝试使用location.href而不是window.open。您的代码应如下所示:

window.open(url,'_blank');