dvstring.js

来自「胜天购物销售系统前台购买特征: 时代购物系统前台购物车部分界面友好」· JavaScript 代码 · 共 40 行

JS
40
字号
function ShowString()
{
	document.write ('<table cellpadding=2 cellspacing=1 align=center class=tableborder1 style="word-break:break-all;">');
	document.write ('<tr>');
	document.write ('<th colspan="2" height="24">Dvbbs论坛字符串变量表,数组名称:lg</th>');
	document.write ('</tr>');
	document.write ('<tr>');
	document.write ('<td width="50%" class=tablebody1 >');
	document.write ('lg[0] 变量名称|字符串值');
	document.write ('</td>');
	document.write ('<td class=tablebody1>');
	document.write ('<div align="center"></div>');
	document.write ('</td>');
	document.write ('</tr>');
	document.write ('<tr>');
	document.write ('<td width="50%" class=tablebody2 valign=top>');
	for(i=0;i<lg[0].length;i++)
	{
		document.write ('<li>lg[0][');
		document.write (i);
		document.write ('] | ');
		document.write (lg[0][i]);
	}
	document.write ('</td>');
	document.write ('<td width="50%" class=tablebody1 align="center">');
	//for(i=0;i<lg[0].length;i++)
	//{
	//document.write ('<li>');
	//document.write (lg[0][i]);
	//}
	document.write ('</td>');
	document.write ('</tr>');
	document.write ('<tr>');
	document.write ('<th height="24" colspan="2"></th>');
	document.write ('</tr>');
	document.write ('<tr>');
	document.write ('</table>');
}
ShowString()

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?