一,chrome为例
打开书签栏
二,新建书签
- 任意选择一个网页,将其保存为书签;
- 右键点击这枚书签,选择修改编辑地址;
3.将名称改成 收藏到星际 ,将网址改为下面的代码javascript:var xhr = new XMLHttpRequest();xhr.open("POST", 'https://www.xj.hk/?thread-create-0.htm', true);xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");xhr.onload = function () { alert("提交成功");};xhr.send("doctype=1"epid=0&fid=1&subject="+encodeURIComponent(document.location.href)+"&message=messagemessage&shuqian=yes");
三,效果
浏览任意网页,点击这个书签就可以帮你把这个网址收藏到星际。成功后会弹出了一个提交成功。
四,原理
https://sspai.com/post/44553
https://blog.csdn.net/shiyong1949/article/details/72471294
https://developer.mozilla.org/zh-CN/docs/Web/API/XMLHttpRequest/send
https://blog.csdn.net/fdipzone/article/details/46390573
本案例使用的ajax post提交
如果使用原生js post提交则会导致提交完,当前页面跳转走。