2013-01-02 48 views
0

我在电话中填写表单以填写反馈。 我希望用户输入如下所示的文本输入;应该有(input type="text")和透明文本框应该在图像中。 有可能吗?Phonegap文本框问题

enter image description here

回答

0

这里是一个可能的解决方案

CSS

body 
{ 
background-image:'path-to-image'; 
} 
input 
{ 
background:transparent 
} 

HTML

.... 
<body> 
<input type='text' placeholder='my text'/> 
</body> 
..... 

希望它可以帮助你。