mount

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 ··· 18 下一页

2011年12月16日

摘要: how to be successful with salesforce 阅读全文
posted @ 2011-12-16 17:47 http://guoyinfeng.info/ 阅读(157) 评论(0) 推荐(0) 编辑

2011年12月12日

摘要: //遍历option和添加、移除option function changeShipMethod(shipping){ var len = $("select[@name=ISHIPTYPE] option").length if(shipping.value != "CA"){ $("select[@name=ISHIPTYPE] option").each(function(){ if($(this).val() == 111){ $(this).remove(); } }); }else{ $("<option 阅读全文
posted @ 2011-12-12 14:09 http://guoyinfeng.info/ 阅读(166) 评论(0) 推荐(0) 编辑

摘要: Html代码<select><option></option><option></option><option></option></select>无疑是失败的并且不好实现动态的实现选中项 对于这样的考虑我们对这些进行一个简单的javaScript 代码编写 createSelect.js 中的代码:Js代码vararrayNation=newArray( '汉族','蒙古族','彝族','侗族','哈萨克族',' 阅读全文
posted @ 2011-12-12 14:07 http://guoyinfeng.info/ 阅读(329) 评论(0) 推荐(0) 编辑

摘要: function setTimeStart(selectId){var a=new Option();a.value="08:00";a.text="08:00";a.selected="selected";selectId.options.add(a);a=new Option();a.value="08:30";a.text="08:30";selectId.options.add(a);a=new Option();a.value="09:00";a.text=&quo 阅读全文
posted @ 2011-12-12 13:31 http://guoyinfeng.info/ 阅读(203) 评论(0) 推荐(0) 编辑

摘要: js: ${BindComplaintType} ${BindReReason} function select(sltName,value){ $("select[@name="+sltName+"] option").each(function(){ if($(this).val() == value){ $(this).attr("selected","selected"); } }); } 后台.cs string strJS = "select('select','&qu 阅读全文
posted @ 2011-12-12 11:04 http://guoyinfeng.info/ 阅读(185) 评论(0) 推荐(0) 编辑

2011年12月9日

摘要: 1 1.<html> 2 2. <head> 3 3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 4 4. <title>点击弹出窗口网页背景变暗且不可点的效果(div实现)</title> 5 5.<style type="text/css"> 6 6.a { 7 7. color: #000; 8 8. font-size: 12px; 9 9. text-de 阅读全文
posted @ 2011-12-09 10:39 http://guoyinfeng.info/ 阅读(723) 评论(0) 推荐(0) 编辑

摘要: 1 window.onload = function() 2 { 3 refreshList(); 4 } 5 6 function refreshList(){ 7 var result = eval("("+'{!JSONAccount}'+")"); 8 //alert("result: " + result); 9 ... 阅读全文
posted @ 2011-12-09 08:49 http://guoyinfeng.info/ 阅读(292) 评论(0) 推荐(0) 编辑

摘要: 1 var dragging = false; 2 var test; 3 var mouseY; 4 var mouseX; 5 6 window.onload = function() 7 { 8 test = document.getElementById("idname"); 9 test.onmousedown = down; 10 test.onmousemove = move; 11 document.onmouseup = up; 12 test.style.position = "relative"; 13 ... 阅读全文
posted @ 2011-12-09 08:47 http://guoyinfeng.info/ 阅读(186) 评论(0) 推荐(0) 编辑

2011年12月4日

摘要: 1.试一试其他数据格式能不能传到后面,比如直接定义一个string的传递一下,通过这样保证不是传递的方法出了问题。2.传递的方法对了以后,如果还不行,那可能是json对象本身的问题。 阅读全文
posted @ 2011-12-04 21:19 http://guoyinfeng.info/ 阅读(131) 评论(0) 推荐(0) 编辑

2011年12月2日

摘要: JavaScript 自定义动态生成表格<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css" 阅读全文
posted @ 2011-12-02 11:48 http://guoyinfeng.info/ 阅读(348) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 18 下一页