UNPKG

jsdk-offical

Version:

JSDK is the most comprehensive TypeScript framework, like JDK.

52 lines (46 loc) 1.77 kB
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta http-equiv="Cache-Control" content="no-cache,no-store, must-revalidate" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="0" /> <title>JSDK Example</title> <link rel="shortcut icon" href="#" /> <script src="/jsdk/dist/jscore.js?_=1"></script> <script src="/jsdk/dist/jsdk-config.js"></script> </head> <body> <button id="get">Get Values</button> <button id="set">Set Values</button> <br> <form id="form1"> <input id="p" type="text"></input> <br> <input id="c1" name="c" value="1" type="checkbox"></input> <input id="c2" name="c" value="2" type="checkbox"></input> <input id="c3" name="c" value="3" type="checkbox"></input> <br> <input id="r1" name="r" value="1" type="radio"></input> <input id="r2" name="r" value="2" type="radio"></input> <input id="r3" name="r" value="3" type="radio"></input> <br> <select id="s1"> <option value="red">red</option> <option value="green">green</option> <option value="blue">blue</option> </select> <br> <select id="s2" multiple> <option value="red">red</option> <option value="green">green</option> <option value="blue">blue</option> </select> <br> <textarea id="t"></textarea> </form> <script src="dom_val.js?_=1"></script> </body> </html>