下拉列表引用數據庫數據 JS編寫隨機生成二維碼

當你須要一個二維碼,二維碼裏有你想表示的內容或者想進入的網頁的時候應該怎麼辦呢?javascript

今天看看一個隨機二維碼的生成:html

所用工具:java

Microsoft Visual Studio 2010jquery

SQL Server Management Studio數據庫

首先:咱們得引入倆個庫:工具

<script type="text/javascript" src="http://static.runoob.com/assets/jquery/2.0.3/jquery.min.js"></script>
    <script type="text/javascript" src="http://static.runoob.com/assets/qrcode/qrcode.min.js"></script>

而後,咱們得引入一個控件:ui

<asp:DropDownList ID="DropDownList2" runat="server" Height="16px" Width="322px" 
                            AutoPostBack="True"   onchange="makeCode()" >
                        </asp:DropDownList>

該控件是一個下拉列表控件 onchange="makeCode()"方法是調用下面的JS方法scala

接下來就是生成二維碼的JS方法了code

<script type="text/javascript">
    var qrcode = new QRCode(document.getElementById("qrcode"), {
        width: 100,
        height: 100
    });

    function makeCode() {
            var elText = document.getElementById("DropDownList2");
            if (!elText.value) {
                elText.focus();
                return;
            }
            qrcode.makeCode(elText.value);
        
    }

    makeCode();

    $("#text").
	on("blur", function () {
	    makeCode();
	}).
	on("keydown", function (e) {
	    if (e.keyCode == 13) {
	        makeCode();
	    }
	});
</script>

裏面的DropDownList2是調用了數據庫裏面的數據傳入的是DropDownList2.SelectedValue.server

 

若是不懂這個下拉的方法,能夠直接使用輸入框的方法。

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
<title>Javascript 二維碼生成器:QRCode</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<script type="text/javascript" src="http://static.runoob.com/assets/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="http://static.runoob.com/assets/qrcode/qrcode.min.js"></script>
</head>
<body>
<input id="text" type="text" value="http://www.runoob.com" style="width:80%" /><br />
<div id="qrcode" style="width:100px; height:100px; margin-top:15px;"></div>

<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
	width : 100,
	height : 100
});

function makeCode () {		
	var elText = document.getElementById("text");
	
	if (!elText.value) {
		alert("Input a text");
		elText.focus();
		return;
	}
	
	qrcode.makeCode(elText.value);
}

makeCode();

$("#text").
	on("blur", function () {
		makeCode();
	}).
	on("keydown", function (e) {
		if (e.keyCode == 13) {
			makeCode();
		}
	});
</script>
</body>
</html>

也是須要引入jquery.min.js和qrcode.min.js兩個庫

相關文章
相關標籤/搜索