有没有办法阻止`<script>'在PHP / Javascript / HTML中加载相同的两次javascript?

时间:2016-10-10 16:34:31

标签: javascript html

&lt; script&gt; 是否有PHP require_once include_once ?我知道&lt; script&gt; 是纯HTML,但PHP或HTML有这样的东西吗?

&#xA;&#xA;

我想阻止javascript加载在同一页面中两次。

&#xA;&#xA;

示例:

&#xA;&#xA;
 &lt; script type =“text / javascript “src =”js / jquery-0.4.ajaxify.min.js“&gt;&lt; / script&gt; &#XA;  
&#XA;

2 个答案:

答案 0 :(得分:1)

在php中运行脚本标记的方法之一是

<?php  
....Here is php code
 ?>
   ... add the  script here(<script>....</script>
 <?php
  ?>

另一种可能的方式是:

在脚本标签中使用php,例如:

<script type="text/javascript">
  var alertMsg = '<?php echo $custom_message; ?>';  
   alert(alertMsg);
 </script>

如果您使用按钮

echo('<button type="button" onclick="customfunction();">My Button</button>');

<script>
//call your customfunction here

</script>

最新解决加载脚本内容两次

我建议使用javascript函数调用特定页面,因为它们需要一个例子

使用.js创建一个文件,例如

example.js
here declare your functions you would put in the script tags of a html page

在您要使用<script>

的页面中
Include the example.js file and you can call the custom functions from there use the obect orientend approach

检查This resource for more info about obect orientend javascrip

答案 1 :(得分:1)