HTML中:<a href="" ><a>或者<a href="porducts" ><a> ,href

HTML中:<a href="" ><a>或者<a href="porducts" ><a> ,href,第1张

<a href="/" ></a>表示链接到网站根目录.

<a href="/porducts/" ></a>表示链接到根目录下的products目录.

返回的文件按服务器默认文档顺序决定, 有可能是以下之一index.htm, index.html, default.htm, index.asp, index.php, index.aspx......

以下使用JQUERY插件的

<!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=utf-8" />

<title>无标题文档</title>

</head>

<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.2.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){

$("#links a").click(function(){

$("#links a").each(function(i,dom){

$(dom).removeAttr("style")

})

$(this).attr("style","background-color:#F00")

})

})

</script>

<body>

<div id="links">

<a href="javascript:">1111111</a><br />

<a href="javascript:">2222222</a><br />

<a href="javascript:">3333333</a><br />

<a href="javascript:">4444444</a><br />

<a href="javascript:">5555555</a><br />

<a href="javascript:">6666666</a><br />

<a href="javascript:">7777777</a><br />

<a href="javascript:">8888888</a><br />

</div>

</body>

</html>

不能 如果想实现点击按钮打开指定网页 可以改成这样

<INPUT type=button value=播放 name=play onclick="window.location.href='http://www.baidu.com'">


欢迎分享,转载请注明来源:优选云

原文地址:https://54852.com/hy/760259.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-06-07
下一篇2023-06-07

随机推荐

发表评论

登录后才能评论
保存