我在指針遊標上的最後一個問題。如何在「瀏覽」按鈕上顯示指針光標
在Html中你有一個輸入文件標籤。這顯示一個文本框和一個瀏覽按鈕。我想知道的是,如何將鼠標懸停在「瀏覽」按鈕上時顯示光標指針?
下面是代碼:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});
我在指針遊標上的最後一個問題。如何在「瀏覽」按鈕上顯示指針光標
在Html中你有一個輸入文件標籤。這顯示一個文本框和一個瀏覽按鈕。我想知道的是,如何將鼠標懸停在「瀏覽」按鈕上時顯示光標指針?
下面是代碼:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
});
嘗試
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
}).css({"cursor":"pointer"});
只適用於IE,然後光標是指向文本框的指針以及按鈕。 – Archer 2012-02-03 12:22:01
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
}).css({"cursor":"pointer"});
您可以在CSS使用cursor
值:
var $videofile = $('<input />')
.attr({
type: 'file',
name: 'videoFile',
id: 'videoFile'
})
.css('cursor','pointer');
查看我的評論 - 我們需要更多關於標記如何解決這個問題的信息。 – 2012-02-03 12:17:45
只適用於IE,然後光標是指向文本框以及按鈕的指針。 – Archer 2012-02-03 12:22:10
什麼你問目前是不沒有訴諸黑客的可能。已經有another thread on this issue。
你可以顯示文本框和瀏覽按鈕的定義? – 2012-02-03 12:17:18
這是IE中文件輸入的標準佈局。我相信這是Chrome和Firefox中的按鈕和標籤。 – Archer 2012-02-03 12:20:41
mybe我錯過了一點,但最新錯誤'style =「cursor:pointer;」'元素上?還是一個類與CSS? – Bazzz 2012-02-03 12:21:40