JQuery Response Text

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • JQuery Response Text

    Hallo,

    habe ein Problem: Ich schicke etwas ab (via Ajax/JQuery)

    Quellcode

    1. var response = $.ajax({
    2. url: "galerie.php?NO_DESIGN=true&rename="+oldname+"&newname="+name,
    3. async: false
    4. }).responseText;

    Will response nutzen und nur den Text ausgegeben bekommen. Jedoch liefert mir response.text() auch gewisse Teile aus dem Header.
    Die Seite, die geladen wird, sieht so aus:

    Quellcode

    1. <!DOCTYPE html>
    2. <html lang="de">
    3. <head>
    4. <meta charset="ISO-8859-15">
    5. <title>Controll Area</title>
    6. <!-- The below script Makes IE understand the new html5 tags are there and applies our CSS to it -->
    7. <!--[if IE]>
    8. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    9. <![endif]-->
    10. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
    11. <style type="text/css" media="all">@import "./src/stylesheet.css";</style>
    12. <style type="text/css" media="all">@import "./src/form.css";</style>
    13. <style type="text/css" media="all">@import "./src/table.css";</style>
    14. </head>
    15. <body> foobar</body></html>
    Alles anzeigen


    Er gibt mir halt die CSS-Imports und den Titel der Seite aus.
    Stehe gerade voll auf dem Schlauch und verstehe nicht, warum es mit text() nicht funktioniert. An "foobar" möchte ich ran.
    =O