Javascript Bookmarklet

1 Cevap php

I've coded a bookmarklet that opens a new window at a certain URL and sends some variables to a PHP using GET. The problem is I need to have it load the same php and send the same variables but inside a div this time.

Herkes bana doğru yönde, lütfen gelin misiniz?

1 Cevap

Client Side - JavaScript & jQuery

jQuery, AJAX kullanarak bir GET işlemi sağlar, örneğin $.get("test.php"); daha fazla bilgi için Ajax/Query.get docs Bkz: argümanlar, örnekler, vb

GET değişkenleri göndermek için sürüm $.get("test.php", { name: "John", time: "2pm" } ); jQuery sadece alt düzey özellikleri sarar ve biraz çapraz tarayıcı uyumlu bir şekilde bunları ifade düzenli JavaScript üstüne bir API katmanı olmasıdır.

Server Side - PHP

Bu w3schools page AJAX çağrısından GET verileri toplayıp bir PHP sayfası bir örnek gösterir:

<?php
$name=$_GET["name"]; // John
$time=$_GET["time"]; // 2pm