js代码如何出现在php语句中
js代码如何出现在php语句中下面的这段js代码如果放到php语句中,就不能用了,如果不放在php语句中就可以正常使用,麻烦问一下,怎么才能在php语句中使用这段js代码...
js代码如何出现在php语句中
下面的这段js代码如果放到php语句中,就不能用了,如果不放在php语句中就可以正常使用,麻烦问一下,怎么才能在php语句中使用这段js代码呢?
<?php
$data =$data. '<script>$(window).scroll(function(){var scrollTop = $(this).scrollTop();var scrollHeight = $(document).height();var windowHeight = $(this).height();if(scrollTop + windowHeight == scrollHeight){$('#xrAd').hide();}else{$('#xrAd').show();}});</script>';
?>
上面这样,js代码在php语句中就不能用,
下面这句,js代码不在php语句中就可以使用,麻烦问问如何让下面这句js代码在php语句中可以使用呢
<script>$(window).scroll(function(){var scrollTop = $(this).scrollTop();var scrollHeight = $(document).height();var windowHeight = $(this).height();if(scrollTop + windowHeight == scrollHeight){$('#xrAd').hide();}else{$('#xrAd').show();}});</script> 展开
下面的这段js代码如果放到php语句中,就不能用了,如果不放在php语句中就可以正常使用,麻烦问一下,怎么才能在php语句中使用这段js代码呢?
<?php
$data =$data. '<script>$(window).scroll(function(){var scrollTop = $(this).scrollTop();var scrollHeight = $(document).height();var windowHeight = $(this).height();if(scrollTop + windowHeight == scrollHeight){$('#xrAd').hide();}else{$('#xrAd').show();}});</script>';
?>
上面这样,js代码在php语句中就不能用,
下面这句,js代码不在php语句中就可以使用,麻烦问问如何让下面这句js代码在php语句中可以使用呢
<script>$(window).scroll(function(){var scrollTop = $(this).scrollTop();var scrollHeight = $(document).height();var windowHeight = $(this).height();if(scrollTop + windowHeight == scrollHeight){$('#xrAd').hide();}else{$('#xrAd').show();}});</script> 展开
2个回答
展开全部
<?php
//改成如下代码
$data =$data. '<script>$(window).scroll(function(){var scrollTop = $(this).scrollTop();var scrollHeight = $(document).height();var windowHeight = $(this).height();if(scrollTop + windowHeight == scrollHeight){$("#xrAd").hide();}else{$("#xrAd").show();}});</script>';
///// $('#xrAd') 改成 $("#xrAd") 即可
?>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询