如何在“浏览”窗口上显示指针光标按钮

发布于 2025-01-01 22:50:27 字数 269 浏览 0 评论 0原文

我关于指针光标的最后一个问题。

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

撑一把青伞 2025-01-08 22:50:27

尝试

var $videofile = $('<input />')
        .attr({
            type: 'file',
            name: 'videoFile',
            id: 'videoFile'
        }).css({"cursor":"pointer"});

try

var $videofile = $('<input />')
        .attr({
            type: 'file',
            name: 'videoFile',
            id: 'videoFile'
        }).css({"cursor":"pointer"});
[旋木] 2025-01-08 22:50:27
var $videofile = $('<input />')
    .attr({
        type: 'file',
        name: 'videoFile',
        id: 'videoFile'
    }).css({"cursor":"pointer"});
var $videofile = $('<input />')
    .attr({
        type: 'file',
        name: 'videoFile',
        id: 'videoFile'
    }).css({"cursor":"pointer"});
清引 2025-01-08 22:50:27

您可以在 css 中使用 cursor 值:

var $videofile = $('<input />')
    .attr({
        type: 'file',
        name: 'videoFile',
        id: 'videoFile'
    })
    .css('cursor','pointer');

You can use the cursor value in css:

var $videofile = $('<input />')
    .attr({
        type: 'file',
        name: 'videoFile',
        id: 'videoFile'
    })
    .css('cursor','pointer');
梦毁影碎の 2025-01-08 22:50:27

目前,如果不诉诸黑客手段,您所问的问题是不可能实现的。已经有关于此问题的另一个线程

What you're asking is currently not possible without resorting to hacks. There is already another thread on this issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文