I'm trying to get the value of a rel under "html > head > link". (link rel='shortlink').

I've tried this code (and some others) with no luck, it just says "undefined".

var shrt = jQuery("html > head > link").find('shortlink').attr('rel');

alert("short: " + shrt);

Anyone?

有帮助吗?

解决方案

Try using attribute selector like below,

$('link[rel=shortlink]')

其他提示

var findit = $('head').find('link[rel="shortlink"]');

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top