预填充输入文本(水印) - 如何防止通过 jQuery Ajax 提交值?
我正在使用 jQuery 示例插件 来预填充表单的文本输入字段。
它工作得很好,通过清除焦点上的输入,并且您在其中输入的任何内容都会保留模糊状态。
该插件的文档称,它将阻止在提交时提交预填充文本。但没有评论通过 Ajax 提交时会发生什么。
当我提交表单(通过 Ajax)时,预填充文本实际上被发送到服务器。
我想知道如果输入字段为空或包含预填充文本,是否有人可以提供有关如何在 ajax 上清空 value
的想法。
谢谢你的帮助。
形式
<form action="http://example.com/1" method="post" accept-charset="utf-8" id="posts_form" enctype="multipart/form-data">
<input type="text" name="posts_text" value="" id="posts_text" class="example">
</form>
这是jQuery 的
$('#posts_text').example('What\'s on your mind?');
function submitPost() {
$.ajax({
url: 'chat/posts_submit/' + <?php echo $page_id; ?>,
type: 'POST',
data: $('#posts_form').serialize(),
dataType: 'html',
beforeSend: function(){
$('#loading').show();
},
success: function(html) {
$('#posts_insert').replaceWith(html);
$('#loading').hide();
}
});
}
$('.share_js').click(function(e){
e.preventDefault();
submitPost();
return false; // dont move to top
});
I am using the jQuery Example plugin to pre-fill text input fields of a form.
It works nicely, by clearing the input on focus and whatever you type in there is preserved on blur.
The documentation for the plugin says that it will prevent submitting the pre-fill text at submission. But there is no comment on what happens when submitting via Ajax.
When I submit my form (via Ajax), the pre-fill text is actually sent to the server.
I wonder if anyone can help with ideas on how to empty value
on ajax if the input field is empty or contains the pre-fill text.
Thanks for helping.
This is the form
<form action="http://example.com/1" method="post" accept-charset="utf-8" id="posts_form" enctype="multipart/form-data">
<input type="text" name="posts_text" value="" id="posts_text" class="example">
</form>
jQuery
$('#posts_text').example('What\'s on your mind?');
function submitPost() {
$.ajax({
url: 'chat/posts_submit/' + <?php echo $page_id; ?>,
type: 'POST',
data: $('#posts_form').serialize(),
dataType: 'html',
beforeSend: function(){
$('#loading').show();
},
success: function(html) {
$('#posts_insert').replaceWith(html);
$('#loading').hide();
}
});
}
$('.share_js').click(function(e){
e.preventDefault();
submitPost();
return false; // dont move to top
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查是否显示“您在想什么?”并要求用户输入以下代码:
Ad@m
You can check if it says "What's on your mind?" and ask the user to enter something with this code:
Ad@m