gpt4 book ai didi

html - CSS + 将文本放入输入类型=文本

转载 作者:太空宇宙 更新时间:2023-11-04 00:15:01 26 4
gpt4 key购买 nike

我有以下代码,它在所有浏览器中都能正常工作:

 <input type="text" id="fileUploadTextBox" value="Browse My Computer"/>

当涉及到 IE 时,我想将文本稍微更改为

 <input type="text" id="fileUploadTextBox" value="Browse My Computer (Double Click)"/>

我可以使用 CSS 做到这一点吗?我知道如何为 IE 运行单独的 CSS 文件。

或者有其他方法吗?

谢谢

最佳答案

通过使用 conditional comments你可以这样做:

对于其他浏览器:

<!--[if !IE]><!-->
<input type="text" id="fileUploadTextBox" value="Browse My Computer"/>
<!--<![endif]-->

对于 IE 浏览器:

<!--[if IE]>
<input type="text" id="fileUploadTextBox" value="Browse My Computer (Double Click)"/>
<![endif]-->

SEE DEMO

或者你可以使用Javascript/jQuery来实现它。

关于html - CSS + 将文本放入输入类型=文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11664044/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com