美文网首页
HTML 代码

HTML 代码

作者: 量子波 | 来源:发表于2018-03-23 13:33 被阅读0次

一、点击div时页面进行跳转,通过onclick事件来实现

1.通过window.open函数

<div onclick="window.open('http://xxx.com')">在新窗口跳转</div>
<div onclick="window.open('http://xxx.com','_self')">在当前窗口跳转</div>

2.通过window.location.href函数

<div onclick="window.location.href= 'http://xxx.com';return false">在当前窗口跳转</div>

二、悬浮搜索框

http://www.jb51.net/web/582070.html https://blog.csdn.net/xxdddail/article/details/70859787

三、切割图
css快速剪切图片的方法和clip属性介绍
1.http://www.html5jscss.com/img-clip.html

相关文章

网友评论

      本文标题:HTML 代码

      本文链接:https://www.haomeiwen.com/subject/cmztcftx.html