如何在“浏览”窗口上显示指针光标按钮
我关于指针光标的最后一个问题。
在 Html 中,您有一个输入文件标签。这显示了一个文本框和一个浏览按钮。我想知道的是当鼠标悬停在“浏览”按钮上时如何显示光标指针?
下面是代码:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});
my last question on pointer cursors.
in Html you have a input file tag. This shows a textbox and a browse button. What I want to know is how can I display a cursor pointer when hovering over the "Browse" button?
Below is code:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试
try
您可以在 css 中使用
cursor
值:You can use the
cursor
value in css:目前,如果不诉诸黑客手段,您所问的问题是不可能实现的。已经有关于此问题的另一个线程。
What you're asking is currently not possible without resorting to hacks. There is already another thread on this issue.