当前位置:编程学习 > html/css >>

用HTC文件,为按钮添加 link 和 target 属性

答案:
  做WEB程序的时候经常需要用一个按钮来跳转到一个页面,或打开新窗口;由于按钮没有link属性,所以经常要写脚本来控制,感觉有些麻烦,最近看了一些关于HTC的文档,发现HTC可以为按钮添加属性,所以就写了个例子。
 
文件:test.htm
 
<link href=><input type=button link="http://www.sina.com.cn" value="打开新浪">
<input type=button link="http://www.sina.com.cn" value="新窗口打开新浪" target="_blank">
 
文件:style.css
 
Input{behavior:url('input.htc');}
文件:input.htc
 
<public:component>
<!--添加连接-->
<public:property name="link" value="" />
<!--添加是否在新窗口打开属性-->
<public:property name="target" value="" />
<script language=javascript>
if(this.onclick==null)
{
onclick=function()
{
  if (link!="")
  {
    if (target=="_blank")
    {
      window.open(link);
    }
     else
    {
      location.href=>    }
  }
};
};
</script>
</public:component>
 
  把上面的代码分别保存,放在同一个目录下就可以了,以后只要引入了style.css,那么页面中的按钮就多了两个属性 link ,target。
 
  如果你设置了按钮的onclick属性,那么link属性就不执行了,毕竟默认的属性优先吗。

上一个:对设计页面制作的思考
下一个:网页头部属性设置技巧

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,