我需要使用thickbox库和jquery通过GET方法发送数据

发布于 2024-07-29 01:24:49 字数 71 浏览 5 评论 0原文

因为我收到了一些 403 错误...那是因为我的服务器没有启用目录列表 有人做过类似的事情吗?

谢谢。

cause i got some 403 errors ... that's beacuse my server doesn't has enabled the directory listing
anybody has done something like that ?

thanks.

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

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

发布评论

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

评论(1

若相惜即相离 2024-08-05 01:24:49

像这样?

/* 'somepage.php' is our script source.
   'username'     is our varible, jonathansampson is the value
   'result'       will hold anything the script sends back
   'text'         is the type of data we're expecting. */
$.get("somepage.php", {"username":"jonathansampson"}, function(result){

  alert(result);

}, "text");

Like this?

/* 'somepage.php' is our script source.
   'username'     is our varible, jonathansampson is the value
   'result'       will hold anything the script sends back
   'text'         is the type of data we're expecting. */
$.get("somepage.php", {"username":"jonathansampson"}, function(result){

  alert(result);

}, "text");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文