12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title></title>
- <!--框架必需start-->
- <script type="text/javascript" src="../../libs/js/jquery.js"></script>
- <script type="text/javascript" src="../../libs/js/language/cn.js"></script>
- <script type="text/javascript" src="../../libs/js/framework.js"></script>
- <link href="../../libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
- <link rel="stylesheet" type="text/css" id="skin" prePath="../../"/>
- <link rel="stylesheet" type="text/css" id="customSkin"/>
- <!--框架必需end-->
- <!--监听文字改变start-->
- <script type="text/javascript" src="../../libs/js/method/typewatch.js"></script>
- <!--监听文字改变end-->
- <script type="text/javascript">
- $(function(){
- $("#text1").typeWatch( { captureLength:2,highlight:false,wait:2000, callback:finished } );
- })
-
- function finished(txt) {
- top.Dialog.alert('输入: ' + txt);
- }
- </script>
- </head>
- <body>
- <div class="box1" style="width: 800px;"><div class="box_topcenter"><div class="box_topleft"><div class="box_topright"></div></div></div><div class="box_middlecenter"><div class="box_middleleft"><div class="box_middleright"><div class="boxContent" style="overflow: visible;height:500px;">
- <fieldset>
- <legend>1、基本使用</legend>
- <textarea id="text1" watermark="请输入两个以上的字" class="textarea"></textarea>
- </fieldset>
- <div class="height_15"></div>
-
-
- </div></div></div></div><div class="box_bottomcenter"><div class="box_bottomleft"><div class="box_bottomright"></div></div></div></div>
- </body>
- </html>
|