随笔分类 - Jquery
Jquery王子
摘要:功能描述:使用jQuery解析已经定义好内容的xml文件1.xml文件:menu.xml<?xml version="1.0" encoding="gb2312"?><menus> <menu> <id>1</id> <name>system</name> <parentId>0</parentId> <target>mainFrame</target> <url></url> </menu&g
阅读全文
摘要:首先建立一个Ajax接受页面,暂时使用GET方式获取数据,后台代码如下:namespace WebApp{ public partial class Index1Ajax : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Response.Write(GetRequestParamByGET("UserName")); Response.End(); } /// <summary> /// 获取GET方式传入的参数 /// </summary>
阅读全文
摘要:今天遇到了一个问题,我用Jquery向页面的一个表格元素动态追加TR与TD标签页面上的表格HTML如:当我使用方法:[代码]但是在IE6,IE7下面 没显示追加后的内容,FF3与IE8没问题后来几经验证,才找到解决方法[代码]关键就在于这个tbody
阅读全文
摘要:document.getElementById('navition').style.cssText = "您的CSS代码';table.insertRow()在IE下没问题 但在firefox下就得改为table.insertRow(-1)同样其相应的insertCell()也要改为insertCell(-1)JScript 使用下面的规则来把非 Boolean 值转换为 Boolean 值: 所...
阅读全文
摘要:根据网上的一个牛人的教程,试着写一个DEMO教程地址:http://www.xiaorsz.com/jquery-realize-tab-switch-effect/需要引入Jquery库代码:[代码]
阅读全文
摘要:模仿官网站写的一个DEMO[代码]官网DEMO地址:http://docs.jquery.com/Effects/show
阅读全文