code_app/test/webservice/1065-demo/demo.html

33 lines
473 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta charset="utf-8"/>
<script src="hgwebsdk.js"></script>
</head>
<body>
<p>
<h1>Test</h1>
<input id="scan" type="button" value="扫描" onclick="scan()" />
</p>
<script>
function scan()
{
hgwebsdk.scan('192.168.10.19', 8001, '/upload.php');
}
window.onload = function()
{
}
window.onbeforeunload = function()
{
}
</script>
</body>
</html>