我确实创建了一个<li>
这样的。
<li>
<input type="checkbox" value="<?php echo $value; ?>" id="form_friend_<?php echo $value; ?>" name="form[friend][]" />
<img id="img_friend_<?php echo $value; ?>" src="">
<label for="form_friend_<?php echo $value;?>" ><?php echo $label;?></label>
</li>
我怎样才能像facebook那样为每个朋友做悬停效果呢?
在牢房的任何地方,例如 Allen Yee,我都可以激活他向他发送请求。我怎样才能用我的<li>
?
更新
在头部:
<script type="text/javascript">
var lis = document.getElementsByTagName('li');
for( var i = 0, l = lis.length; i < l; i++ ) {
lis[i].onclick = function() {
var c = this.getElementsByTagName('input')[0];
if ( c.checked )
c.checked = false;
else
c.checked = true;
};
}
<script>
在体内:
<li >
<input type="checkbox" value="1" id="form_friend_1" name="form[friend][]" />
<img id="img_friend_1" src=""> <label for="form_friend_1" >My name</label>
</li>