我希望在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'");
}
答案 0 :(得分:0)
单击链接时需要重定向到href。
$('#lblCompany').on('click', function(e){
e.preventDefault();
$(this).attr('href', $(this).attr('href') + $(this).text());
window.location = $(this).attr('href');
});
希望帮助你!