Bir hedef dosyadan değişkeni jquery ajax yanıt

0 Cevap php

I am sending username and password to some target file (auth.php) using jquery ajax. In auth.php file, i have many variables "var a1", "var b1".

Kimlik başarı, değişken "a1" (a1 = 'pas') geçmek ayarlayın.

Benim sorun ajax yanıt kullanarak "auth.php" den sadece "a1" değişkeni erişmek için nasıl.

küçük bir kod aşağıda:

$.ajax({
          url: "auth.php", 
          type: "POST",
          data: "dataString",
          success: function (txtBack) { 

           -- here i need to check the variable "a1" from auth.php
          }

Şimdiden teşekkürler.

0 Cevap