zoukankan
html css js c++ java
二维码生成
本文关联的程序可根据文本框中的字符串生成二维码。
https://www.cnblogs.com/leisureeen/p/qrcode.html
下面是程序源代码:
function newqr(){ document.getElementById('qrdiv').innerHTML=""; var ifqr=document.createElement("iframe"); ifqr.width="80%"; ifqr.height="330"; ifqr.src="https://common.cnblogs.com/qrcode.html?url="+encodeURIComponent(document.getElementById('qrstr').value); document.getElementById('qrdiv').appendChild(ifqr); } document.getElementById('qrstr').onkeyup=newqr; newqr();
查看全文
相关阅读:
Atcoder 1975 Iroha and Haiku
训练指南 string easy
心态回归
Mysql问题处理
Mysql-从库只读设置
Redis5-集群搭建实验
安装python3并新建python3的虚拟环境
docker-部署zabbix4
pt工具-mysql慢日志分析&优化
Ansible:playbook-nagios
原文地址:https://www.cnblogs.com/leisureeen/p/qrcode.html
最新文章
请远离include_once和require_once[转]
PHP上传文件功代码练习(单文件)
MIME类型大全
protractor安装和基本使用
简单的nodejs + mongodb CRUD
use bower
(1)Transpiles ECMAScript 6 code to ECMAScript 5
Day13 协议
Day12 TableViewCell 辅助功能
javascript 正则表达式
热门文章
block fomating context
containing block
inline-block 兼容性
Wannafly 挑战赛 9
2017-2018 ACM-ICPC, Asia Daejeon Regional Contest
Codechef 刷题
Codechef December Cook-off 2017
Codeforces 刷题
USACO 2017 December Contest
Atcoder 刷题
Copyright © 2011-2022 走看看