如果浏览器中没有启用 javascript,我试图显示一条消息,然后我不想继续加载页面。我使用 php 所以我做了
<?php exit;?>
在 noscipt 中,但尽管浏览器启用了 javascript,但 php 代码退出工作......我使用的代码是这样的:
<noscript>
<div style="text-align:center; margin-top:15px; color:#f00; margin-bottom:10px;text-decoration: blink;">
<h1>
Please enable javascript<br style="margin-bottom: 5px;"/>
<h3>Else the system will not work correctly.</h3>
</h1>
</div>
<div align="center">
<div class="title" style="font:bold 18px arial">Enabling Javascript</div>
For: <strong>FireFox</strong>
Go To:<strong>Options > Content</strong><br/> and Check the Enable Javascript.
<br/>OR<br/>
Refer this link to enable javascript according to your browser<br/>
<a href="http://www.enable-javascript.com/">http://www.enable-javascript.com/</a>
<?php exit;?>
</div>
</noscript>
如果未启用javascript,我应该不继续进行什么,如果启用了js,我应该继续......