随机
>我不知道如何摆脱!

发布于 2024-09-05 01:30:55 字数 3736 浏览 4 评论 0原文

我刚刚搜索文档找到它,我删除了


但它仍然存在!你们还看到其他什么吗?


<?php print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<font face="Segoe UI">
<body>

<script type="text/javascript">
/*function detectBrowser()
{
    var browser = navigator.appCodeName;
    if (browser!="Mozilla") {document.location.href="noaccess.php"; alert(browser);}
}
detectBrowser();
*/
</script>

<title>Second</title>

<link rel="stylesheet" type="text/css" href="allCSS.css"/>
<center>
<!--<img align="right" src="logo.png" id="headerimg"/>-->

<input type="image" id="headerimg" src="logo.png" align="right" onclick="toggleh();"/>
<ul align="center" class="">

<div class="menu">
<ul class="nav">
<li><strong><a href="index.php">Home</a></strong>
<ul>
<li><a href="games.php">Games</a></li>
<li><a href="browse.php">Browse</a></li>
<li><a href="catalogue.php">Catalogue</a></li>
<li><a href="forum.php">Forums</a></li>
</ul>
</li>

<li><strong><a href="games">Games</a></strong>
<ul>
<li><a href="profile.php">Profile</a></li>
<li><a href="settings.php">Settings</a></li>
</ul>
</li>

<li><strong><a href="contact">Contact</a></strong>
<ul>
<li><a href="contact/index.php">Phone</a></li>
<li><a href="contact/index.php">Email</a></li>
<li><a href="contact/index.php">Mail</a></li>
</ul>
</li>
</div>

</center>
</body>
<center>
<?php
echo '<div id="msg">';
include 'message.txt';
echo '</div>';
//include 'hits.txt';
?>
<p>

<?php
function ChangeText($txt)
{
$txt='<script type="text/javascript">get();</script>';
echo '<script type="text/javascript">change();</script>';
$filename="message.txt";
$fp=fopen($filename,'w');
fwrite($fp,'<h4 class="hmsg">' . $txt . '</h4>');
fclose($fp);
}
?>
<script type="text/javascript">
<!--
window.onload=enter;

function enter()
{
    //alert("Welcome!");
    //hideCMD();
}

function get(text)
{
text=document.getElementById("ta").value;
return text;
}

function toggleh()
{
    var element=document.getElementById("headerimg");
    if (element.style.display!="none"){element.style.display="none";}
    else {element.style.display="";}
}

function change(text)
{
    text=document.getElementById("ta").value;

    if (text=="toggle") {toggleh(); return;}

    if (text=="home") {document.location.href="index.html"; return;}

    if (text.match("goto:*")) {var loc=text.substring(5,text.length); document.location.href=loc; return;}

    if (text.match("ban:*")) {var loc=text.substring(4,text.length); document.location.href=loc; return;}

    document.getElementById("msg").innerHTML='<h2 class="hmsg">'+text+'</h2>';
}

function hideCMD()
{
    document.getElementById("cmd").style.display="none";
}
//-->
</script>

</head>
<body>
<div id="msg">
</div>
<p id="cmd">
<input class="panela" type="text" value="" id="ta" maxLength="20"/>
<input class="panelb" type="image" src="submit.png" alt="Submit" onclick='change();'/>
</p>


</center>
<p class="hide">-</p>
</font>
</html>

I have just searched the document to find it, I removed the <hr class="cmdbar"></hr> but it is still there! Do any of you see anything else?


<?php print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<font face="Segoe UI">
<body>

<script type="text/javascript">
/*function detectBrowser()
{
    var browser = navigator.appCodeName;
    if (browser!="Mozilla") {document.location.href="noaccess.php"; alert(browser);}
}
detectBrowser();
*/
</script>

<title>Second</title>

<link rel="stylesheet" type="text/css" href="allCSS.css"/>
<center>
<!--<img align="right" src="logo.png" id="headerimg"/>-->

<input type="image" id="headerimg" src="logo.png" align="right" onclick="toggleh();"/>
<ul align="center" class="">

<div class="menu">
<ul class="nav">
<li><strong><a href="index.php">Home</a></strong>
<ul>
<li><a href="games.php">Games</a></li>
<li><a href="browse.php">Browse</a></li>
<li><a href="catalogue.php">Catalogue</a></li>
<li><a href="forum.php">Forums</a></li>
</ul>
</li>

<li><strong><a href="games">Games</a></strong>
<ul>
<li><a href="profile.php">Profile</a></li>
<li><a href="settings.php">Settings</a></li>
</ul>
</li>

<li><strong><a href="contact">Contact</a></strong>
<ul>
<li><a href="contact/index.php">Phone</a></li>
<li><a href="contact/index.php">Email</a></li>
<li><a href="contact/index.php">Mail</a></li>
</ul>
</li>
</div>

</center>
</body>
<center>
<?php
echo '<div id="msg">';
include 'message.txt';
echo '</div>';
//include 'hits.txt';
?>
<p>

<?php
function ChangeText($txt)
{
$txt='<script type="text/javascript">get();</script>';
echo '<script type="text/javascript">change();</script>';
$filename="message.txt";
$fp=fopen($filename,'w');
fwrite($fp,'<h4 class="hmsg">' . $txt . '</h4>');
fclose($fp);
}
?>
<script type="text/javascript">
<!--
window.onload=enter;

function enter()
{
    //alert("Welcome!");
    //hideCMD();
}

function get(text)
{
text=document.getElementById("ta").value;
return text;
}

function toggleh()
{
    var element=document.getElementById("headerimg");
    if (element.style.display!="none"){element.style.display="none";}
    else {element.style.display="";}
}

function change(text)
{
    text=document.getElementById("ta").value;

    if (text=="toggle") {toggleh(); return;}

    if (text=="home") {document.location.href="index.html"; return;}

    if (text.match("goto:*")) {var loc=text.substring(5,text.length); document.location.href=loc; return;}

    if (text.match("ban:*")) {var loc=text.substring(4,text.length); document.location.href=loc; return;}

    document.getElementById("msg").innerHTML='<h2 class="hmsg">'+text+'</h2>';
}

function hideCMD()
{
    document.getElementById("cmd").style.display="none";
}
//-->
</script>

</head>
<body>
<div id="msg">
</div>
<p id="cmd">
<input class="panela" type="text" value="" id="ta" maxLength="20"/>
<input class="panelb" type="image" src="submit.png" alt="Submit" onclick='change();'/>
</p>


</center>
<p class="hide">-</p>
</font>
</html>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蔚蓝源自深海 2024-09-12 01:30:55

这里是


,第 126 行。CTRL + F 通常适用于大多数文本编辑器。

Here it is <hr class="cmdbar"></hr>, line: 126. CTRL + F generally works with most text editors.

暗藏城府 2024-09-12 01:30:55

如下:

<p id="cmd">
<hr class="cmdbar"></hr>
<input class="panela" type="text" value="" id="ta" maxLength="20"/>
<input class="panelb" type="image" src="submit.png" alt="Submit" onclick='change();'/>
</p>

浏览器也将


视为正确的


,尽管根据W3C 规范。

Here it is:

<p id="cmd">
<hr class="cmdbar"></hr>
<input class="panela" type="text" value="" id="ta" maxLength="20"/>
<input class="panelb" type="image" src="submit.png" alt="Submit" onclick='change();'/>
</p>

Browsers do treat <hr></hr> as a proper <hr /> too, although that's not supposed to be so according to W3C specs.

数理化全能战士 2024-09-12 01:30:55

您还可以使用 Firefox 的 Firebug。这是一个简洁的附加组件,可以帮助您根据网页的外观查找代码。

You could also use Firebug for Firefox. It's a neat add-on that helps you find code based on the appearance of the web page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文