gpt4 book ai didi

php - 在javascript中制作书签

转载 作者:可可西里 更新时间:2023-10-31 23:34:24 33 4
gpt4 key购买 nike

我正在尝试为我的网站制作一个书签。

我制作了一个 php 页面,当发送 GET 例如 www.website.com/index.html?a=banana 时,它将返回 echo '站立';

现在我正在尝试制作一个小书签,当我按下它时,它会:对 php 页面执行 GET,然后在 3 秒后消失的小弹出窗口中向用户显示返回给用户的任何回显。

我该怎么做?

Instapaper 小书签做到了...

javascript:
function%20iprl5(){
var%20d=document,z=d.createElement('scr'+'ipt'),b=d.body,l=d.location;
try{
if(!b)
throw(0);
d.title='(Saving...)%20'+d.title;
z.setAttribute('src',l.protocol+'//www.instapaper.com/j/deyNbbpjuSei?u='+encodeURIComponent(l.href)+'&t='+(new%20Date().getTime()));
b.appendChild(z);
}
catch(e){
alert('Please%20wait%20until%20the%20page%20has%20loaded.');
}
}
iprl5();
void(0)

最佳答案

小书签是一段在您所在页面范围内运行的 javascript。

这并不意味着只调用任意 url,也不能这样做,因为那样会违反同源惯例。如果您的 PHP 可以返回 JSONP,那么您可以编写一个小书签,它会在页面上插入一个脚本,调用您返回的脚本——这也将能够显示一个弹出窗口

javascript:
function%20iprl5(){
var%20d=document; // shorten document object
var z=d.createElement('scr'+'ipt'); // create a script tag
var b=d.body; // get document.body
var l=d.location; // get document.location - I would get document.URL instead
try{
if(!b) throw(0); // if there is no body object available
d.title='(Saving...)%20'+d.title; // set document.title
z.setAttribute('src',l.protocol+'//www.yourserver.com/test.php?u='+encodeURIComponent(l.href)+'&time='+(new%20Date().getTime())); // create the script url
b.appendChild(z); // append it to the body - I would append to head myself
}
catch(e){ // give an error
alert('Please%20wait%20until%20the%20page%20has%20loaded.');
}
}
iprl5(); // call it
void(0); // make sure it does not return a value to the window

将此 view-source:http://www.instapaper.com/j/deyNbbpjuSei?u=http://www.stackoverflow.com 粘贴到地址栏中以查看数量作为您所在页面的一部分返回的内容

关于php - 在javascript中制作书签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6402152/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com