Грубый пример, чтобы показать, как это делается в JavaScript!:) В IE нажмите «разрешить заблокированное содержимое»
<html>
<head>
<script language="javascript" type="text/javascript">
var f=0;
function tnd()
{
if(f==1)
{
var str2="The images, quotes and everything else are intended to be maintained strictly confidential. Rightclick of the mouse has been disabled, as well as alt+printscreen and copy options do not work well in major browsers. design:aravind"
document.getElementById("t_n_d").innerHTML=str2;
f=0;
return 1;
}
if(f==0)
{
var str1="to read features, terms and conditions about this design."
document.getElementById("t_n_d").innerHTML=str1;
f=1;
return 1;
}
}
</script>
</head>
<body>
<span id='footertext'
style="font-size: 12px;"><span onmousedown='tnd();' style='color: red; text-decoration: underline; cursor: pointer;'>click here</span> : <span id='t_n_d'>to read features, terms and
conditions about this design.</span></span></td>
</tr>
</body>
</html>
Скопируйте HTML-код в «str2
» для загрузки таблиц .. рисунков и т. Д.(ps: заменить двойные кавычки на одинарные в кавычках в str2)
также обратите внимание, что javascript - это скрипт на стороне клиента ... он снижает производительность при чрезмерном использовании .. это просто для того, чтобы дать вам представление.