[jquery] url 단어포함 하면 실행
본문
url 예시 : http://localhost/hoho/mouse.php
만약 url 에mouse.php 가 들어가면 $('body').css("background", "red") 를 작동시키고 싶습니다
도움부탁드립니다.
답변 2
<script>
if (location.href.indexOf("mouse.php") > 1) $('body').css("background", "red")
</script>
<script>
<?php
if( !(strpos($_SERVER['SCRIPT_NAME'], "mouse.php") !== false ) {
?>
$('body').css("background", "red");
<?php } ?>
</script>
답변을 작성하시기 전에 로그인 해주세요.