Cordova Phonegap文本框问题

Cordova Phonegap文本框问题,cordova,phonegap-plugins,Cordova,Phonegap Plugins,我在phonegap中有一张填写反馈的表格。 我希望用户输入如下所示的文本输入;应该有(input type=“text”),并且图像中应该有透明的文本框。 可能吗 这里有一个可能的解决方案 css HTML 。。。。 ..... 希望对你有帮助 body { background-image:'path-to-image'; } input { background:transparent } .... <body> <input type='text' placehol

我在phonegap中有一张填写反馈的表格。 我希望用户输入如下所示的文本输入;应该有
(input type=“text”)
,并且图像中应该有透明的文本框。 可能吗


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

css

HTML

。。。。
.....
希望对你有帮助

body
{
background-image:'path-to-image';
}
input
{
background:transparent
}
....
<body>
<input type='text' placeholder='my text'/>
</body>
.....