< script>
是否有PHP require_once
或 include_once
?我知道< script>
是纯HTML,但PHP或HTML有这样的东西吗?
我想阻止javascript加载在同一页面中两次。


示例:


 < script type =“text / javascript “src =”js / jquery-0.4.ajaxify.min.js“>< / script> 
 代码>


答案 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)