<select id="applyType" name="$!{status.expression}" class="inp" onchange="receiptAddApplyType()" style="width:150px;"> #foreach($item in ${applyTypes}) <option value="$!{item.value}" #if…
有关ECMAScript定义如何获取this请移步ECMAScript中关于如何获取this的定义 绝大多数情况下,函数的调用方式决定了this的取值 全局上下文 console.log(this === window); //true 函数上下文 直接调用 function fn(){ return this; } fn() === window; //true //this的值不是由函数调用设定,默认为全局对象 严格模式下增强了安全措施,this关键字禁止指向全局对象 function fn…
CKEditor 是著名的 HTML 编辑器,IBM.Oracle.Adobe 等都在用.CKEditor 创建于 2003 年,其前身为 FCKEditor,在 2009 年的时候把“F”去掉了,更名为 CKEditor.其开源协议是基于 GPL, LGPL 和 MPL 的.官方网站:http://ckeditor.com/ 一 般来说,我们在编辑内容时,先是读入到 textarea,再将 textarea 的内容赋给编辑器.因为直接把内容作为字符串给编辑器的 Value 属性赋值使用的是 J…
<select id="applyType" name="$!{status.expression}" class="inp" onchange="receiptAddApplyType()" style="width:150px;"> #foreach($item in ${applyTypes}) <option value="$!{item.value}" #if…
javascript获取select的值全解 获取显示的汉字 document.getElementById("bigclass").options[window.document.getElementById("bigclass").selectedIndex].text 获取数据库中的id window.document.getElementById("bigclass").value 获取select组分配的索引id window.docu…
多用月input标签 定义的时候 直接写ref=“id” <el-input placeholder="请输入内容" style="width: 150px" v-model="id" ref="id" > </el-input>name: 调用的时候,this.$refs.id.value; this.id = this.$refs.id.value 父亲取儿子或者孙子的值 this.$refs.儿子…
题目一:var arr = [ '100px', 'abc'-6, [], -98765, 34, -2, 0, '300', , function(){alert(1);}, null, document, [], true, '200px'-30,'23.45元', 5, Number('abc'), function(){ alert(3); }, 'xyz'-90 ]; 1.找到arr里所有的数字:-98765, 34, -2, 0, 5 2.找到可以转成数字的:'100px', -98…
一.   json字符串转换为javascript对象,并取值 var answer = '{"id":0}' var value= JSON.parse(answer); //转换为json对象 alert(value.id); //取值 二.javascript对象转换为json字符串 沿用例子中value var json_str= JSON.stringify(value); //转换为json字符串 三.json数组字符串转换为json对象,并取值 var jsonStr =…
1.jquery取复选框的值<!--引入jquery包--> <script src="../jquery-1.11.2.min.js"></script><!--引入的jquery一定是在最上面的--> <style type="text/css"> </style> </head> <body> <input type="checkbox"…
可能是因为用惯了 Java ,对一个对象取值/赋值喜欢用 setXXX() 和 getXXX() . 在 JavaScript 中使用 setValue() 时,遇到了个奇怪的问题,所以查了下 JavaScript 的帮助文档,原来 JavaScript 的取值/赋值这么简单. var v_value = obj.value; // 取值 obj.value = "YOUR_VALUE"; // 赋值 写了个简单的HTML,验证了一下 <html> <head>…