<!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/htmlcharset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery.js"></script>
<style>
.over{background-color:#096}
</style>
<script language="javascript">
$(function() {
$("p").mouseover(function(){
$(this).addClass("over")
}).mouseout(function(){
$(this).removeClass("over")
})
$("p").click(function(){
var testStr=$(this).text()
location.href = "http://www.baidu.com/s?wd="+testStr
})
})
</script>
</head>
<body>
<p id="t">文本1</p>
<p class="g">文本2</p>
<p>文本3</p>
</body>
</html>
span标签增加display:block元素,是正规用法如果span标签直接包含<p>标签,那么会没有效果,用浏览器的审查元素查看会发现结构变成了:
<span></span>
<p>1111111</p>
自己试验一下吧!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)