请帮帮我。 我过去常常在PHP3中做一些编程,现在我正在慢慢地再次使用jquery等新功能。 我在网站上处理错误的课程,这很好,但现在我有简单的代码和平问题,应该处理错误本身。我做了简单的类函数:( ..开关()部分
default :
echo('<script type="javascript">
$("#infoLine").show ("clip", 300, "vertical");
$("#infoLine" ).text("'.$this->strErrorInfo.'");
$("#infoLine").addClass(".error");
</script>');
这部分不起作用脚本部分出现在html代码中,带有id infoLine的div在代码中定义如下:
<footer>
<div id="infoLine"></div>
</footer>
错误生成代码是:
<section id="main"><div style="float:none; position: relative;">
<?php
$error->intErrorOnLine = 15795;
$error->strErrorInfo = "This is really big error! Everything works fine";
$error->strErrorInFile = "some.html";
$error->showErrorLine();
css添加到代码中就像:
#infoLine {
display: none;
position: relative;
bottom: 2em;
width: 95%;
margin-right: auto;
margin-left: auto;
max-height: 50px;
}
.error {
position: relative;
bottom: 2em;
width: 95%;
margin-right: auto;
margin-left: auto;
max-height: 50px;
border-radius: 5px;
border-style: solid;
border-color: #bb0000;
border-width: 2px;
background: rgba(255, 150, 150, 0.8);
}
div msg永远不会出现,我不知道为什么。我知道我做了一些非常愚蠢的事情,所以请不要打败我:) - 非常感谢你的帮助