سؤال

How can I insert a value to variable with:

$("#TEST").load("GET.php #Message_1");

An example of that:

var MSG = $("#TEST").load("GET.php #Message_1");

alert(MSG);
هل كانت مفيدة؟

المحلول

You need to get the value in the callback function:

$("#TEST").load("GET.php #Message_1", function() {
    var msg = $(this).text();
    alert(msg);
});

نصائح أخرى

This should work:

$("#TEST").load("GET.php #Message_1");

var msg = $("#TEST").val();
alert(msg);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top