我正在尝试在立方体下方显示一个文本....当我独自在小提琴中工作时,代码工作正常....但是当我把它放在我的项目中时它不起作用....你能告诉我如何显示data-text="Cube1"值.....
工作代码http://jsfiddle.net/PKwDp/4/
不工作代码http://jsfiddle.net/rajkumart08/EDKkg/1/
$('document').ready(function () {
window.setTimeout(function () {
$('.cubeCell').each(function () {
var htmlText = $(this).attr('data-text');
$(this).append('<div class="cubeTextStyle">'+htmlText+'</div>');
});
}, 600);
});
<div data-text="Cube1" data-caption="<a style='margin-left: 92px; font-size: 18px; color: grey;' href='http://www.w3schools.com/' >Create</a> <div> <a style='margin-left: 92px; font-size: 18px; color: grey;' >View/Edit</a> </div> <a style='margin-left: 92px; font-size: 18px; color: grey;' >Labels</a>" data-image="http://www.defie.co/designerImages/inventoryControl.png">testing</div>