如何将Javascript值存储在alert中显示的php变量中

时间:2018-02-24 11:19:34

标签: javascript php

如何将javascript变量传递给php变量我的代码是 - 我想在php变量中存储警报值。

<script type="text/javascript" >
$(document).ready( function() {

    $( '#container' ).html( '<ul class="filetree start"><li class="wait">' + 'Generating Tree...' + '<li></ul>' );

    getfilelist( $('#container') , 'Sample' );

    function getfilelist( cont, root ) {

        $( cont ).addClass( 'wait' );

        $.post( 'Foldertree.php', { dir: root }, function( data ) {

            $( cont ).find( '.start' ).html( '' );
            $( cont ).removeClass( 'wait' ).append( data );
            if( 'Sample' == root ) 
                $( cont ).find('UL:hidden').show();
            else 
                $( cont ).find('UL:hidden').slideDown({ duration: 500, easing: null });

        });
    }

    $( '#container' ).on('click', 'LI A', function() {
        var entry = $(this).parent();

        if( entry.hasClass('folder') ) {
            if( entry.hasClass('collapsed') ) {

                entry.find('UL').remove();
                getfilelist( entry, escape( $(this).attr('rel') ));
                entry.removeClass('collapsed').addClass('expanded');
                window.alert($(this).attr('rel'))
                $( '#selected_file1' ).text( "Folder:  " + $(this).attr( 'rel' ));
                <?php 
                ?>
            }
            else {

                entry.find('UL').slideUp({ duration: 500, easing: null });
                entry.removeClass('expanded').addClass('collapsed');
            }
        } else {
            $( '#selected_file' ).text( "File:  " + $(this).attr( 'rel' ));


        }
    return false;
    });

});
</script>

1 个答案:

答案 0 :(得分:0)

Javascript和PHP之间存在差异,PHP是服务器端脚本语言,而Javascript是客户端脚本语言。见https://www.sqa.org.uk/e-learning/ClientSide01CD/page_18.htm

使用AJAX的优势代替您的问题