开发者

add root url to href in jQuery

how can i add the root url to the href?

jQuery('#breadcrumb li').prepend('<li><a href="root url here">Home</a开发者_运维知识库> > </li>');


jQuery('#breadcrumb li').prepend('<li><a href="/">Home</a> > </li>');

A slash will always point to the web root.


var rooturl = http://example.com/;

jQuery('#breadcrumb li').prepend('<li><a href="' + rooturl + '">Home</a> > </li>');
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜