admin管理员组文章数量:1352192
Is it possible to make an html element appear clickable with JQuery?
By appear clickable I mean have the mouse pointer change appearance when the user hovers over the the element.
I dont want to use a tag.
Is it possible to make an html element appear clickable with JQuery?
By appear clickable I mean have the mouse pointer change appearance when the user hovers over the the element.
I dont want to use a tag.
Share Improve this question edited Jun 25, 2010 at 6:07 cletus 626k169 gold badges919 silver badges945 bronze badges asked Jun 25, 2010 at 5:35 tinnytinny 4,2577 gold badges29 silver badges38 bronze badges4 Answers
Reset to default 6You don't do this with Javascript, you do it with CSS:
.whatever {
cursor: pointer;
}
You could do the same thing with jQuery if you really wanted, but all you're really doing is setting up the style:
$(".whatever").css("cursor", "pointer");
Use the following code:
jQuery('myelement').css("cursor", "pointer");
This can also be done in pure CSS with cursor:pointer
.
You use the CSS cursor
property for this. Directly with CSS:
#id { cursor: pointer; }
Or with jQuery using css()
:
$("#id").css("cursor", "pointer");
Or with Javascript:
document.getElementById("id").style.cursor = "pointer";
Set the style of the element to:
#elementId {
cursor:pointer;
}
You could do it with jQuery, but not sure why you'd want to? Here 'tis:
$(this).css("cursor", "pointer");
本文标签: javascriptMake a html element appear clickable with JQueryJSStack Overflow
版权声明:本文标题:javascript - Make a html element appear clickable with JQueryJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743907326a2559759.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论