如何在jquery中为itemtype添加值?

时间:2017-10-29 18:50:19

标签: javascript jquery html angularjs

我想添加' itemtype'此身体标记的值,

coll.aggregate([{'$unwind':'$carts'},
                {'$match':{'closed':{'$ne':true}}},
                {'$project':{'carts.cartid':1,'carts.status':1,'carts.cart_created':1,'carts.closed':1,'carts.items':1,'carts.updatedon':1,'updatedon':1,'diff':{'$subtract':['$carts.updatedon','$createdon']}}},
                {'$match': {'diff': {'$gte': 1000 * 60 * 60 * 24 * days}}}])

我尝试了以下

body.page-body.ng-scope.device-lg(itemscope='', itemtype='')

但这不起作用。

1 个答案:

答案 0 :(得分:1)

itemscopeitemtype是元素属性,通过$.attr()方法设置它们:

$('body').attr('itemscope', 'scope');
$('body').attr('itemtype', 'type');

http://api.jquery.com/attr/