scrollintoview 可以带时间参数吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrollintoview 可以带时间参数吗相关的知识,希望对你有一定的参考价值。

href="javascript:test()"可以调用js的test方法onclick = "test()" 同样可以调用js的test方法在href属性后面添加一个onclick属性就可以解决问题。href控制页面跳转路径 onclick控制调用js,解决方法不唯一但这种是最简单的。<pre t="code" l="js"><html>
<head>
<title>test</title>
</head>
<body>
<a href="#name" onclick="javascript:alertstr();">click</a>
<div style="height:5000px;"></div>
<div id="name"></div>
<script type="text/javascript">
function alertstr()
alert(1);

</script>
</body>
</html>
参考技术A 时间不可以,目前只支持传三个参数

以上是关于scrollintoview 可以带时间参数吗的主要内容,如果未能解决你的问题,请参考以下文章

在 xpath 中传递 Datatable 项并收到错误“javascript 错误:参数 [0].scrollIntoView 不是函数”

h5之scrollIntoView控制页面元素滚动

指针可以带参数吗?这3种指针有啥区别

scrollIntoView()的用法

可以像调用带参数的函数一样调用 Groovy 对象吗?

关于scrollIntoView和scrollIntoViewIfNeeded