瞥了一眼js
Posted huangzp1104
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了瞥了一眼js相关的知识,希望对你有一定的参考价值。
JS打开超链接的几种形式
1、window.open(‘‘url‘‘)
2、用自定义函数
<script>
function openWin(tag,obj)
{
obj.target="_blank";
obj.href = "Web/Substation/Substation.aspx?stationno="+tag;
obj.click();
}
</script>
<a href="javascript:void(0)" onclick="openWin(3,this)">超链接</a>
3、window.location.href="";
以上是关于瞥了一眼js的主要内容,如果未能解决你的问题,请参考以下文章