js文件 - 将window.location插入到附加的html中

时间:2011-09-09 18:48:16

标签: javascript variables var window.location

我有一个附加html的js文件。对于一个特定的相对链接,我需要链接为https。我假设我会设置一个var,但我不确定如何将它插入到js文件中的附加html中。

$('#emailUpdates').append('<div class="head-popin ac-popin"><ul><li><a href="/webapp/wcs/stores/servlet/LLBLoginRedirectCmd?feat=ln&gUrl=ShowMAOAPLogin&lUrl=LLBOAPCouponLPAccessCheck&pgType=MA&storeId=1&catalogId=1&langId=-1">Coupon Lookup</a></li></ul></div>').css({
                    "padding-left": "78px"
                });

所以上面的链接,我希望上面的内容类似于https:// +window.location.hostname +/webapp/wcs/stores/servlet/LLBLoginRedirectCmd?feat=ln&gUrl=ShowMAOAPLogin&lUrl=LLBOAPCouponLPAccessCheck&pgType=MA&storeId=1&catalogId=1&langId=-1

但我不确定如何在这个例子中得到这种效果。

感谢

1 个答案:

答案 0 :(得分:1)

这样的东西?

var href = 'https://' + window.location.hostname + '/webapp/wcs/stores/servlet/LLBLoginRedirectCmd?feat=ln&gUrl=ShowMAOAPLogin&lUrl=LLBOAPCouponLPAccessCheck&pgType=MA&storeId=1&catalogId=1&langId=-1';

var html = '<div class="head-popin ac-popin"><ul><li><a href="' + href + '">Coupon Lookup</a></li></ul></div>';

$('#emailUpdates').append(html).css({
    "padding-left": "78px"
});