JavaScript 书签

发布于 2024-08-14 17:38:08 字数 118 浏览 4 评论 0原文

我编写了一个小书签,它在某个 URL 处打开一个新窗口,并使用 GET 将一些变量发送到 PHP。 问题是我需要让它加载相同的 php 并发送相同的变量,但这次是在 div 内。

有人能指出我正确的方向吗?

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.

Could anyone point me in the right direction please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小帐篷 2024-08-21 17:38:08

客户端 - JavaScript 和 JavaScript jQuery

jQuery 提供了使用 AJAX 的 GET 操作,例如 $.get("test.php"); 请参阅Ajax/Query.get 文档 了解更多信息:参数、示例等。

发送 GET 变量的版本是 $.get("test.php", { name: "John", time: "2pm" } ); jQuery 是常规 JavaScript 之上的 API 层,它简单地包装了较低级别的功能并表达它们以某种跨浏览器兼容的方式。

服务器端 - PHP

w3schools 页面显示了以下示例从 AJAX 调用获取 GET 数据的 PHP 页面:

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

Client Side - JavaScript & jQuery

jQuery provides a GET operation using AJAX, for example $.get("test.php"); See Ajax/Query.get docs for more info: arguments, examples, etc.

The version to send GET variables is $.get("test.php", { name: "John", time: "2pm" } ); jQuery is an API layer on top of regular JavaScript that simply wraps the lower-level features and expresses them in a somewhat cross-browser compatible way.

Server Side - PHP

This w3schools page shows a sample of a PHP page picking up GET data from an AJAX call:

<?php
$name=$_GET["name"]; // John
$time=$_GET["time"]; // 2pm
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文