当您将鼠标悬停在光盘上时,如何使光标成为输入文件或输入文本的指针? 我的尝试,但它当然不起作用, input type="file" style="cursor: pointer;"/ 或者我必须使用javascrip(jquery)?? 编辑: 对不起我
我的尝试,但它当然不起作用,
<input type="file" style="cursor: pointer;"/>
或者我必须使用javascrip(jquery)??
编辑:
对不起我的错误 – 光标确实变为了一个点
<input type="text" style="cursor: pointer;"/>
但不是
<input type="file" style="cursor: pointer;"/>
你可以在Firefox上测试this link,然后你明白我的意思.
只有文件按钮变为指针而不是文件的输入字段.
编辑2:
Here是我的CSS’hack’,
<div id="right-col" style="position:relative; width:76px; height:24px; overflow:hidden; border:1px solid #000;"> <input type="file" style="position:absolute; top:0; right:0; z-index:2;opacity:1; cursor:pointer;"/> </div>无法做到.输入类型文件是浏览器受保护最多的对象之一.某些浏览器允许您比其他浏览器做更多的事情,具体取决于他们认为“安全”的内容.
您可以使用闪光按钮.实际上,有很好的插件可以使文件上传成为更好的东西,比如Uploadify.