zl程序教程

您现在的位置是:首页 >  其他

当前栏目

bookmarklet 书签小程序

程序 书签
2023-09-14 09:09:53 时间

bookmarklet 简单学习

1,弹出内容

javascript:(function(){alert('hello');})()

在这里插入图片描述

在这里插入图片描述

2,获取网页内容

  • 标题 document.title
javascript: ( function() { 
let title = document.title;
alert ( title ); 
})()
  • 网址URL location.href
javascript: ( function() { 
let title = location.href;
alert ( title ); 
})()

参考:

  1. Chrome扩展程序(和Bookmarklets)
  2. Bookmarklet编写指南
  3. js代码在线格式化