预填充输入文本(水印) - 如何防止通过 jQuery Ajax 提交值?

发布于 2024-11-15 18:54:22 字数 1254 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回首观望 2024-11-22 18:54:22

您可以检查是否显示“您在想什么?”并要求用户输入以下代码:

function submitPost(){
    if($("#posts_text").val() == "What's on your mind?"){
        alert("Please enter what's on your mind...");
    }else{
        // Continue on submitting via Ajax
    }
}

Ad@m

You can check if it says "What's on your mind?" and ask the user to enter something with this code:

function submitPost(){
    if($("#posts_text").val() == "What's on your mind?"){
        alert("Please enter what's on your mind...");
    }else{
        // Continue on submitting via Ajax
    }
}

Ad@m

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文