Ben başarılı bir web sayfasının içeriğini değiştirmek için AJAX kullandık. Benim etki alanından başka bir web sayfasını içerebilir ama ben sorun köprüler çalışmaya yapıyor. Köprüler göreceli ben bunu dahil ediyorum sayfaya göre çalışmaz o zaman adresleme kullanıyorsanız, bu yüzden ben de okumak gibi php html etiketi ayrıştırmak için araştırıyordu
Ben href veriyi bulmak için aşağıdaki RegExp /href[\s]?=[\s\"\']+(.*?)[\"\']/im
kullanıyorum ama göreli adres öneki nasıl bir işaretçi istiyorum.
I would like to replace a link href="./test1/page1.html"
on page http: // foo.bar.com/folder1/info1/data.html
with href="http: // foo.bar.com/folder1/info1/./test1/page1.html"
then if I include the the page content of /folder1/info1/data.html in http://foo.bar.com/folder2/faraway/another.html the links on the embedded page will function correctly
I was looking at using the php preg_replace function to do that but have very quickly come unstuck. If I am barking up the wrong tree and there is a more appropriate tool or approach can someone please point me in the right direction ;-). Maybe it can all be down in Javascript?