摘要: 看了这篇文章后写出的笔记 http://www.cnblogs.com/dragonpig/archive/2011/01/29/1947648.html就是这样虽然有了智能提示,但是反应很慢,有时候需要编译几次才会正确,这种改造方法有点像mvc,都是lambda表达式,这里记录下方法。using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace Asp.net.bind. 阅读全文
posted @ 2011-03-04 11:24 jackyong 阅读(752) 评论(0) 推荐(0) 编辑
摘要: 1.等待dom元素加载完毕. <script type="text/javascript"> //传统写法 window.onload= function(){ alert("test1"); } //jquery写法 $(document).ready(function(){ $("#one").html("book"); }); //jqeury简写 $(function(){ // }) </script>2.jquery 对象和dom 对象<!DOCTYPE html PUBL 阅读全文
posted @ 2011-03-04 11:14 jackyong 阅读(502) 评论(0) 推荐(0) 编辑