0

やあみんな、私は「ステータス」に取り組んでいます-アップデーター。動作します。問題が1つだけあります。ステータスを送信した後、スクリプトを再度動作させるには、ページを手動で再読み込みする必要があります。手伝ってくれませんか。コードは次のとおりです。

<script language="javascript">
$(document).ready(function(){
    $("form#status_form").submit(function(){
        var s_autor =   $('#s_autor').attr('value');
        var s_status    =   $('#s_status').attr('value');
        $.ajax({
            type: "POST",
            url: "/admin/request.php",
            data: "s_autor="+ s_autor +"& s_status="+ s_status,
            success: function(){
                $('#show').load("/admin/request.php").fadeIn("slow", function(){
                    setTimeout(function(){
                        $(function() {
                             $("#show").fadeTo("slow", 0.01, function(){
                                 $(this).slideUp("slow", function() {
                                     $(this).remove();
                                 });
                             });
                        });
                    }, 2000);
                });
            },
        });
        return false;
    });
});
</script>

では、送信ボタンをクリックする頻度でスクリプトを繰り返すことができるようにコーディングする方法を知っていますか?

ちなみに、HTMLフォームは次のとおりです。

<form id="status_form" method="post" action="request.php" onsubmit="return false;">
    <input type="text" id="s_autor" name="s_autor" value="<?= $user_id; ?>" style="display: none;" /><input type="text" id="s_status" name="s_status" value="Statusnachricht" /><input type="submit" value="" class="submit" id="status_submit" />
</form>
4

1 に答える 1

0

このコードを初めて呼び出した後、#showを破棄しているようです。したがって、次回は#showがなくなりますか?これを正しく理解しているかどうかを確認するために、コードにコメントを追加します。

success: function() {
    // File has been successfully posted to request.php
    // We are now going to GET the contents of request.php (ignoring any response from the previous POST)
    // Also note, should probably put remainder of code in a callback to "load", so we can be sure it has had a chance to load!...
    $('#show').load("/admin/request.php").fadeIn("slow", function(){
        setTimeout(function(){
            $(function() {
                 $("#show").fadeTo("slow", 0.01, function(){
                     $(this).slideUp("slow", function() {
                         // Note! #show is being removed from the document here. It won't be available for future events.
                         $(this).remove();
                     });
                 });
            });
        }, 2000);
    });
},

幸運を!

編集これをもう少し見てみると、setTimeoutの後にドキュメントの「準備完了」イベントを作成していることに気づきましたか?

私はあなたが望む効果を理解しようとしています。アップロードが終了した後(#showdivで)何かをフェードインさせ、数秒待ってから再びフェードアウトさせたいようです。(あなたslideUpはフェードアウトした要素に作用しているので、効果は見られません。)

このようなものはどうですか?

success: function() {
    // File has been successfully posted to request.php
    // We are now going to GET the contents of request.php (ignoring any response from the previous POST)
    $('#show').load("/admin/request.php", function() {
        $(this).fadeIn("slow", function() {
            setTimeout(function() {

                $("#show").fadeOut("slow", function() {
                    // don't remove #show. Just empty it for using again next time.
                    $(this).empty()
                });

            }, 2000);
        });
    }); 
},
于 2009-11-10T04:43:44.483 に答える