星期一 小雨转阴 8~15℃
鼠标触发事件改变样式的例子
//使用className
onmouseover="this.className=’btn_mouseover’"
//直接定义样式
onmousemove="this.style.position=’relative’; this.style.left=’2px’"
//使用backgroundImage,不同于css样式中的写法background-image
onmouseover="this.style.backgroundImage=’url(/imgs/test.gif)’"
//辅助定义,用于代替例中的"this"
var myId = document.getElementById(‘testId’);
应用举例(先定义好两个链接样式):
css:
.currentA:link { color:#FFFF00 }
.currentA:visited { color:#FFFF00 }
.currentA:active { color:#FFFF00 }
.currentA:hover { color:#FFFF00 }
.currentB:link { color:#FFFFFF }
.currentB:visited { color:#FFFFFF }
.currentB:active { color:#FFFFFF }
.currentB:hover { color:#FFFFFF }
js:
function currentLink(current){
for(i=1; i<=12; i++){
//加if防止由于疏忽遗漏ID或错定义ID导致脚本出错
if(document.getElementById("mainMenu_"+[i]) != null){
document.getElementById("mainMenu_"+[i]).className=’currentB’;
}
}
current.className=’currentA’;
}
html:
<ul>
<li><a href="#@" onclick="javascript:currentLink(this)" id="mainMenu_1" class="currentB">菜单1</a></li>
<li><a href="#@" onclick="javascript:currentLink(this)" id="mainMenu_2" class="currentB">菜单2</a></li>
<li><a href="#@" onclick="javascript:currentLink(this)" id="mainMenu_3" class="currentB">菜单3</a></li>
<ul>
F8team交流:发挥各自强项,人不在多在于精 ( & F8Team )
……
熊小明 16:10:44
恩, web服务可以调用,但ryan 这边先得把用户的地区给我
朱高 16:11:22
这个是要等uch上线后再说了
Ryan 16:11:23
地区目前只能通过 用户登录的ip 通过纯真ip库 去获取
Ryan 16:11:30
应该都是可以的
朱高 16:11:42
是的,就是一个接口问题
熊小明 16:12:02
恩,我请求你的后台,不就可以获得ip了吗,然后你返回给我 地区
Ryan 16:12:22
对 完全可以的
Ryan 16:12:44
反正flash里不能直接获取的数据,都统一调用我们预定义的接口
熊小明 16:13:40
要得
朱高 16:13:42
很好很强大
朱高 16:14:18
各人都让自己的长项发挥出来,这就是一个很强大的团队了
熊小明 16:14:52
朱高 16:15:44
闪友上了以后,就可以把51as慢慢结合进来了,再扩充我们的人员编制,我想,等到一定的时候,不用我们找VC,自然会有人来找我们的
Ryan 16:16:10
……
Flx 17:16:18
我好像来晚了
朱高 17:17:07
不要紧,我们讨论的是调用数据的话题
朱高 17:17:25
你的任务是画窗户
Flx 17:18:32
朱高 17:18:33
各自负责各自的领域。
人不在多,在于精。。。
The Bear and the Fox
from http://classics.mit.edu/Aesop/fab.1.1.html#212
A Bear boasted very much of his philanthropy, saying that of all animals he was the most tender in his regard for man, for he had such respect for him that he would not even touch his dead body. A Fox hearing these words said with a smile to the Bear, "Oh! that you would eat the dead and not the living."
死者不会说话。