我创建了一个 RSS 提交表单,我想在输入框中显示类似Enter your email here....
的内容,当他们单击它时,该消息应该消失,他们可以将他们的电子邮件放入框中。
这是我目前正在使用的代码
<div id="RSS">
<form action="http://feedburner.google.com/fb/a/mailverify" class="RSS" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=RSS', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
<input type="hidden" name="uri" value="RSS">
<input type="hidden" name="loc" value="en_US">
<input name="email" id="RSS-text" type="text" maxlength="100" style="width:160px !important" value="Enter your email address..." class=""><button type="submit" id="RSS-button">Subscribe</button>
</form>
</div>
问题是当有人点击它时它并没有消失,我看到很多表单,包括我的搜索表单,它可以这样做。