我正在尝试获取第一个类并将相同的文本应用到元描述中,但是元没有加载到 var get 中。有人可以看一下并调试吗?
谢谢!
$(document).ready(function() {
// add the class of first to any element to get the meta data to populate
var get = $('.first').html();
var myclone = $('meta[name=description]').attr("content");
$(get).appendTo(myclone);
//alert(get);
});