`
wjt276
  • 浏览: 650257 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论
文章列表
说明 1 只能输入0到9和小数点 2 只能粘贴数字 3 不能拖动内容进来 4 禁止使用输入法 <input onkeypress="return event.keyCode>=48&&event.keyCode<=57||event.keyCode==46" onpaste="return !clipboardData.getData('text').match(/\D/)" ondragenter="return false" style=&quo ...
1、前后台所有文件统一用utf-8编码方式。 2、在Request Headers中设置Content-Type:application/x-www-form-urlencoded; charset=utf-8,具体方法:将Ext.lib.Ajax.defaultPostHeader += '; charset=utf-8'加在Ext.onReady块里,此方法可以解决用EXT在POST时的中文乱码问题。 3、在Response Headers中设置Content-Type:text/json;charset=utf-8,在JAVA中实现方法:response.setContentType( ...
第一步:引用JavaScript(calendar.js)文件 <script src="js/calendar.js" type="text/javascript"></script> 第二步:在需要输入框处,加入以下代码就可以了。 <input onfocus="calendar()" name="designDate" type="text" id="designDate" value="<%=new Simple ...
第二步:引用JavaScript(moneyinput.js)文件 <script src="moneyinput.js" type="text/javascript" ></script> 第二步:在需要输入框处,加入以下代码就可以了。 <input type="text" id="price" name="price" style="text-align:right" onFocus="nstchange(this ...
第一种:     <script language="javascript" type="text/javascript"> window.location.href="login.jsp?backurl="+window.location.href; </script> 第二种:     <script language="javascript"> alert("返回"); wind ...
1.document.write(""); 输出语句<br /> 2.js中的注释为//<br /> 3.传统的html文档顺序是:document->html->(head,body)<br /> 4.一个浏览器窗口中的dom顺序是:window->(navigator,screen,history,location,document)<br /> 5.得到表单中元素的名称和值:document.getelementbyid("表单中元素的id號").name(或value)<br ...
方法:   用window.open弹出一个窗口,通过第二个参数设置它的name,   让form的target等于这个name就可以了,这样就提交到这个窗口中了 document.formfind.action="drawingreport.jsp"; window.open ("", 'win', 'width=720px,height=600px,resizable=yes,top=50px,left=200px,toolbar=no, menubar=no, location=no, status=no'); document.formfin ...
window.showModalDialog的基本用法 showModalDialog() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.showModalDialog()方法用来创建一个显示HTML内容的模态对话框。 window.showModelessDialog()方法用来创建一个显示HTML内容的非模态对话框。 使用方法: vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures]) vReturnValue = window.showModel ...
用javaScript动态修改html组件form的action属性,可以在提交时再决定处理表单的页面。 <script> <!-- function chgAction(v){ if(v==1){ form1.action="./newworksheet"; }else if(v==2){ form1.action="./worksheetupdate"; } form1.submit(); } --> </script>     & ...
//读取cookie的函数 function readcookie(name) { var cookievalue = ""; var search = name + "="; if(documents.cookie.length > 0) { offset = documents.cookie.indexof(search); if (offset != -1) { offset += search.length; end = documents.cookie.indexof("; ...
1、把<div id="div_exam"></div>嵌入到当前Ext元素panel内: { fieldLabel: "上传图片", xtype: 'panel', contentEl: 'div_exam' }  效果: <div class="x-panel-body x-panel-body-noheader" id="ext-gen155" style="width: 500px;"> ...
Ext中包含了几个以get开头的方法,这些方法可以用来得到文档中DOM、得到当前文档中的组件、得到Ext元素等,在使用中要注意区别使用。 1、get方法 get方法用来得到一个Ext元素,也就是类型为Ext.Element的对象,Ext.Element类是Ext对DOM ...
七、fit 一个子元素将充满整个容器(如果多个子元素则只有一个元素充满整个容器) 例一:    例二: 如果容器组件中有多个子元素,则只会显示一个元素,如下面的代码: Ext.onReady(function(){ new Ext.Panel({ renderTo:"hello", title:"容器组件", layout:"fit", width:500, height:100, items:[{title:"子元素1",html:"这是子元素1中的内容&q ...
例二: Ext.onReady(function() { var i = 0; var navHandler = function(direction) { if (direction == -1) { i--; if (i < 0) { i = 0; } } if (direction == 1) { i++; if (i > 2) { i = 2; return false; } } var btnNext = Ext.get(" ...
xtJS学习笔记 layout的9种样式风格 extjs的容器组件都可以设置它的显示风格,它的有效值有 absolute, accordion, anchor, border, card, column, fit, form and table. 一共9种 一、  absolute 顾名思义,在容器内部,根据指定的坐标定位显示 二、  ac ...
Global site tag (gtag.js) - Google Analytics