render : "canvas",//设置渲染方式
width : 256, //设置宽度
height : 256, //设置高度
typeNumber : -1, //计算模式
correctLevel: QRErrorCorrectLevel.H,//纠错等级
background : "#ffffff",//背景颜色
foreground : "#000000" //前景颜色
使用方式非常简单
jQuery('#output').qrcode({width:200,height:200,correctLevel:0,text:content})
这是一个非常简单使用的JS在线生成表格的代码效果,通过JS功能代码,直接输入行数和列数就可以自动生成需要的表格,当然也可以扩展JS代码实现生成文字的各种形式。
<html><head>
<title>Js动态生成表格</title>
<style type="text/css">
table{font-size:14px}
</style>
</head>
<body >
<script language="javascript">
function tableclick(name1,name2,name3){
Trow=name1.value
Tcol=name2.value
Tv=name3.value
if ((Trow=="") || (Tcol=="") || (Tv=="")){
alert("请将制作表格的条件填写完整")
}
else{
r=parseInt(Trow)
c=parseInt(Tcol)
Table1(r,c,Tv)
}
}
function tablevalue(a,ai,rows,col,str){
int1=a.length
for (i=0i<rows++i){
for (j=0j<col++j){
if ((j==0)&&(ai>=int1)){break}
if (ai>=int1){
str=str+"<td scope='col'> </td>"
}
else{
if (j==0){
str=str+"<tr><th scope='col'> "+(a[ai++])+"</th>"
}
else{
if (j==col-1){
str=str+"<td scope='col'> "+(a[ai++])+"</td>"
}
else{
str=str+"<td scope='col'> "+(a[ai++])+"</td>"
}
}
}
}
str=str+"</tr>"
}
return str
}
function Table1(row,col,Str1){
var str=""
a=new Array()
s=new String(Str1)
a=s.split("#")
int1=a.length
ai=0
if (col<=int1){
str=str+"<table width='300' border='4'>"
for (i=0i<col++i){
if (i==0){
str=str+"<tr><th scope='col'> "+(a[ai++])+"</th>"
}
else{
if (i==(col-1)){
str=str+"<th scope='col'> "+(a[ai++])+"</th></tr>"
}
else{
str=str+"<th scope='col'> "+(a[ai++])+"</th>"
}
}
}
if (int1>col){
if (row>1){
str=tablevalue(a,ai,row-1,col,str)
}
}
str=str+ "</table>"
aa.innerHTML=str
}
}
</script>
<form name="form1" method="post" action="">
<p><b>行数:</b>
<input name="name1" type="text" style="width:40px" value="4">
<b>列数:</b>
<input name="name2" type="text" style="width:40px" value="4">
<input type="button" name="Submit3" value="生成表格"
onClick="tableclick(document.form1.name1,document.form1.name2,document.form1.name3)"></p>
<p><b align="top">表值:</b></p>
<p>
<input name="name3" wrap="VIRTUAL" style="width:520px "
value="COL1#COL2#COL3#COL4#ROW1#A1#A2#a3#ROW2#B1#B2#B3#ROW3#C1#C2#C3">
</p>
</form>
<div id="aa"></div>
</body>
</html>
生成聊天窗口具体执行步骤如下:1、借助聊天软件生成js代码
快商通是一款免费的在线客服系统,能够生成为网页实现自动弹出在线聊天窗口功能的js代码。搜索快商通到达官网下载客服系统软件并完成注册,登录后找到“设置中心”-“代码生成”打开进入代码生成页面,可以直接拿到我们需要的js代码(如果是移动网站,记得先点击页面上的移动设备图标选项)。
客服软件后台
生成在线聊天窗口js代码
2、将js代码添加到网页html源码中
拿到代码就已经成功一半了,紧接着打开网站后台,找到名为“footer”的模板文件,打开文件把上一步获取到的代码添加到第一行或最后一行,再点击保存就可以了。当再访问网页时,就会发现页面出现了迷你对话窗口,接下来我们要让他能够根据要求自动弹出。
3、设置自动弹出在线聊天窗口的触发条件
在左侧找到“图标设置”功能栏,点击进入设置页面。打开“迷你对话框”的功能按钮,并直接点击“迷你对话框”文字进入设置界面。