2013-01-02 47 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> 
..... 

希望它可以幫助你。