在我的项目中打开浏览器右上角,使用jquery打开一个窗口
问题描述:
in my project open a browser right corner open a window using jquery anyone one known the solution pls kindly help to me
我的尝试:
i尝试搜索谷歌没有解决方案我没有看到
What I have tried:
i tried serach in google no solution i am not see
答
< html>
< head>
< script>
function foo()
{
window.open(,,width = 200,身高= 100);
}
< / script>
< / head>
< body>
< button onClick =foo();> Hello< / button>
< / body>
< / html>
<html>
<head>
<script>
function foo()
{
window.open("", "", "width=200,height=100");
}
</script>
</head>
<body>
<button onClick="foo();">Hello</button>
</body>
</html>