能否把PHP代码放进一个JS文件里面调用来执行?解决问题追加200分。

2024-11-23 03:17:22
推荐回答(2个)
回答1:

一、你那些DIV代码不显示在源代码里面几乎是不可能的,因为这些东西只有浏览器才执行。放在JS里面只是不让别人一眼就看到而已,完全不让见是不可能的。

二、你想用调用的a.js代码,只需要下面这样即可:

document.writeln("

");
document.writeln("
");
document.writeln("
");
document.writeln("
");
document.writeln("
");
document.writeln(" <\/div>");
document.writeln("
");
document.writeln("
");
document.writeln("
");
document.writeln(" ");
document.writeln(" ");
document.writeln(" ");
document.writeln(" ");
document.writeln(" <\/form>");
document.writeln(" <\/div>");
document.writeln(" <\/div>");
document.writeln("
");
document.writeln("
    ");
    document.writeln(" {section_head_components}");
    document.writeln(" <\/ul>");
    document.writeln(" <\/div>");
    document.writeln(" <\/div>");
    document.writeln(" <\/div>");

    不涉及PHP的内容。

回答2:

JS是客户端脚本语言,是在浏览器中解析执行,PHP是服务器端脚本语言,在服务器端解析执行.

web执行的过程是先在服务器端将服务器端脚本,如php解析成文本发送到浏览器上,浏览器收到后,再解析,发现JS代码的时候就执行.

所以,JS中执行php是不行的(除非浏览器可以执行php)