关于指针游标的最后一个问题。
在Html中你有一个输入文件标签。这显示了一个文本框和一个浏览按钮。我想知道的是当我将鼠标悬停在“浏览”按钮上时如何显示光标指针?
以下是代码:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});
答案 0 :(得分:0)
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
}).css({"cursor":"pointer"});
答案 1 :(得分:0)
试
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
}).css({"cursor":"pointer"});
答案 2 :(得分:0)
您可以在css中使用cursor
值:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
})
.css('cursor','pointer');
答案 3 :(得分:0)
如果不诉诸黑客,目前无法提出要求。已经有another thread on this issue。