Jquery - 将Label的文本值嵌入到锚点href属性中

时间:2014-09-12 10:26:55

标签: javascript jquery

我希望在Google上搜索$("#lblCompany").text()。我怎么能把它嵌在下面? 试过<a href='https://www.google.com.tr/search?q='" +$("#lblCompany").text()+ "'。没工作。重定向到https://www.google.com.tr/webhp

$(".block1").bind('mouseenter', function (e) {
    $("#plus").append("<a href='https://www.google.com.tr/search?q=' target='_blank'");
}

1 个答案:

答案 0 :(得分:0)

单击链接时需要重定向到href。

$('#lblCompany').on('click', function(e){
    e.preventDefault();
    $(this).attr('href', $(this).attr('href') + $(this).text());
    window.location = $(this).attr('href');
});

希望帮助你!