javascript
abcshj
这个作者很懒,什么都没留下…
展开
-
JS-RGB转16进制(rgb2hex)
RGB转16进制(rgb2hex)转载 2017-10-31 13:01:36 · 2378 阅读 · 0 评论 -
JS-将json格式转换成对象
将json格式转换成对象原创 2017-11-17 15:12:43 · 1108 阅读 · 0 评论 -
JS-html页面回退刷新
window.onpageshow = function(event) { if (event.persisted || (window.performance && window.performance.navigation.type == 2)) { window.location.reload() } };原创 2017-11-06 11:03:56 · 1919 阅读 · 2 评论 -
JS-删除html标签
JS-删除html标签原创 2017-12-04 13:52:48 · 1916 阅读 · 0 评论 -
HTML,js复制文本,输入框或div都能用
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <style type="text/原创 2018-05-15 09:41:34 · 2611 阅读 · 0 评论 -
JavaScript监听手机物理返回键
pushHistory(); window.addEventListener("popstate", function(e) { window.location = 'http://www.baidu.com'; }, false); function pushHistory() { v...转载 2018-07-13 14:39:57 · 2766 阅读 · 2 评论