- 浏览: 114372 次
- 性别:
- 来自: 深圳
最新评论
-
wuliupo:
这个有一个BUG,当有的td设置 background-col ...
【JQuery】鼠标经过表格行变色 -
cheeruplc:
使用了以上的方式 我用一个for循环多次输出alert 循环 ...
页面跳转 -
xbm376:
谢谢分享!
Gponit和GLatLng的区别 -
baiyejianxin:
king130520 写道 MXML是FLEX中的标记语言,与 ...
FLEX -
king130520:
...
FLEX
文章列表
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="index" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml ...
background属性
- 博客分类:
- CSS
background: url(icon.gif) no-repeat 0 50%;
设为no-repeat,是为了让背景图片只显示一次。我们把它放置在距离首部0点和距离顶部50%的位置上
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>jQuery Cookie Plugin</ti ...
//插件编写
//调用时$.ltrim(string)去除左边空格
// $.rtrim(string)去除右边空格
; (function ($) {
$.extend({
ltrim: function (text) {
return (text || "").replace(/^\s+/g, "")
},
rtrim: function rtrim(text) {
return (text || "" ...
<select multiple="multiple" class="content" id="select2" style="width: 100px; font-size:12px; height: 160px;">
<option value="8">选项8</option>
</select>
alert($("#select2").attr(" ...
前台用服务器控件CheckBoxList
<asp:CheckBoxList ID="chkSports" runat="server">
</asp:CheckBoxList>
在后台对其赋值
chkSports.Items.Add("苹果");
chkSports.Items.Add("西瓜");
chkSports.Items.Add("橘子&q ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>视频展示效果实例</title>
<l ...
//left: "+=50" 自增长50
//left: "-=50" 自递减50
//left: "+="+width 自递增width(width为变量)
$("#panel").animate({ left: "+=50", opacity: "1" }, 3000)
event.type属性(获取事件的类型)
$("a").click(function (event) {
alert(event.type);
return false; //阻止页面跳转
});
代码运行后返回:"click".
event.preventDefault()方法(阻止默认的事件行为,如表单中某个元素为空不能提交时使用),也可用return false代替。
$("#sub").click(functio ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>图片提示</title>
<style t ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
1.JQuery代码风格
链式操作风格
(1)对于同一个对象不超过三个操作的,可以直接写成一行。代码如下:
$("li").show().unbind("click");
(2)对于同一个对象的较多操作,建议每行写一个操作。代码如下:
$(this).removeClass("mouseout")
.addClass("mouseover")
.stop()
.fadeTo("fast",1)
...
ApplicationControlBar组件样式属性 cornerRadius 边框圆角度 数值从0~20 dropShadowEnabled 是否显示边框投影 true和false ...
- 2009-06-24 12:02
- 浏览 1282
- 评论(0)
Application组件样式属性 backgroundImage 背景图 使用Embed(source=" ");来应用 backgroundColor 背景色 backgroundGradientColors 背景渐进色 ...
- 2009-06-24 11:59
- 浏览 1215
- 评论(0)
一.前言:
XML是微软.Net战略的一个重要组成部分,而且它可谓是XML Web服务的基石,所以掌握.Net框架下的XML技术自然显得非常重要了。本文将指导大家如何运用C#语言完成.Net框架下的XML文档的读写操作。首先,我会向大家介绍.N ...