作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个小型 PHP 脚本。见下图:
$x=5;
if ($x >= 8 ) {
echo "x is ".$x;
} else {
echo 'error';
$errorWindow = 'www.google.com';
echo "<script type='text/javascript'>
popWin('$errorWindow', 'windowname', 'width=400,height=300,scrollbars=yes');
</script>";
}
但是我的 popwin 不工作,我想知道为什么,浏览器页面上打印消息“错误”,但弹出窗口没有出现。谁能帮助告诉我我做错了什么?我怎样才能获得popwin?
编辑
我对语法做了一些更改,这是该页面的完整代码:
$x=5;
if ($x >= 8 ) {
echo "x is ".$x;
} else {
?><script type="text/javascript">
function popWin(url)
{
var thePopCode = window.open(url,'','height=800, width=1000, top=500, left=200, scrollable=yes, menubar=yes, resizable=yes');
if (window.focus)
{
thePopCode.focus();
}
}
</script>
<?php
$errorWindow='google.com';
echo "<script type='text/javascript'>
popWin($errorWindow);
</script>";
}
最佳答案
这正在工作。
<?php
$x=5;
if($x >= 8 ) {
echo "x is ".$x;
} else {
echo "Error";
?><script type="text/javascript">
function popWin(url)
{
var thePopCode = window.open(url,'','height=800, width=1000, top=500, left=200, scrollable=yes, menubar=yes, resizable=yes');
if (window.focus)
{
thePopCode.focus();
}
}
</script>
<?php
$errorWindow='google.com';
echo "<script type='text/javascript'>
popWin('google.com');
</script>";
}
?>
这也有效
<?php
$x=5;
if($x >= 8 ) {
echo "x is ".$x;
} else {
echo "Error";
?><script type="text/javascript">
function popWin(url)
{
var thePopCode = window.open(url,'','height=800, width=1000, top=500, left=200, scrollable=yes, menubar=yes, resizable=yes');
if (window.focus)
{
thePopCode.focus();
}
}
</script>
<?php
$errorWindow='google.com';
echo "<script type='text/javascript'>
popWin('".$errorWindow."');
</script>";
}
?>
关于javascript popwin 无法在 php 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23824182/
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我创建了一个小型 PHP 脚本。见下图: $x=5; if ($x >= 8 ) { echo "x is ".$x; } else { echo 'error'; $errorWi
我是一名优秀的程序员,十分优秀!