Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 phonegap 中有一个用于填写反馈的表格。我希望用户输入如下所示的文本输入;应该有(input type="text")透明的文本框应该在图像中。可能吗?
(input type="text")
这是一个可能的解决方案
css
body { background-image:'path-to-image'; } input { background:transparent }
HTML
.... <body> <input type='text' placeholder='my text'/> </body> .....
希望对您有所帮助。