Jquery kullanarak bir html dosyası yüklemek nasıl?

2 Cevap php

Jquery kullanarak bir html dosyası yüklemek zorunda. I google deyince, ben pasajı var

. $ ("# Beslemeleri") yükü ("feeds.html");

Ama beslemeleri itiraz içine feed.html içeriğini yüklemek istemiyorum. Bunun yerine o sayfayı tamamen yüklemeniz gerekir. O sayfayı nasıl yüklenir. Bana yardım plz

2 Cevap

Eğer mevcut sayfada bir unsuru haline load(), bazı HTML isteyen değilseniz, belki size redirect başka bir sayfaya istediğiniz anlamına?

url = "feeds.html";
window.location = url;

Ya da belki sadece bir tüm vücut doldurmak istiyor? İsterseniz vücut etiketi içine () yük olabilir.

$("body").load("feeds.html");

$.get()

İşte bir özeti:

Load a remote page using an HTTP GET request. This is an easy way to send a simple GET request to a server without having to use the more complex $.ajax function. It allows a single callback function to be specified that will be executed when the request is complete (and only if the response has a successful response code). If you need to have both error and success callbacks, you may want to use $.ajax.

$.get() returns the XMLHttpRequest that it creates. In most cases you won't need that object to manipulate directly, but it is available if you need to abort the request manually.