我需要设置光标:用于特定 jquery 数据表行选择的手。我尝试使用此代码但不工作。
$(document).ready(function () {
$("#table tr").css('cursor', 'hand');
});
我需要设置光标:用于特定 jquery 数据表行选择的手。我尝试使用此代码但不工作。
$(document).ready(function () {
$("#table tr").css('cursor', 'hand');
});
这就是答案,很简单:
<table class="display" id="table" style="cursor:pointer" width="100%"> </table>
$(document).ready(function () {
$("#table tr").css('cursor', 'pointer');
});
用这个
HTML
<div class="teaser">
<img src="http://lorempixel.com/output/animals-q-c-189-137-4.jpg">
</div>
CSS
.teaser {
border-radius: 100%;
overflow: auto;
display: table-caption;
}
.js
{
cursor: -webkit-grab;
cursor: -Moz-grab;
}
查询
$(document).ready(function () {
$(".teaser").addClass("js")
});