PHP中能否使用javascript语言
发布网友
发布时间:2022-04-22 07:10
我来回答
共6个回答
热心网友
时间:2022-04-18 12:53
可以,在PHP里面,JS和HTML一样,写JS的时侯不管PHP,和在HTML中写JS是一样的。
热心网友
时间:2022-04-18 14:11
<html>
<head>
<script language='javascript'>
function goto(obj)
{
if(obj.str.value=='')return false;
if(obj.str.value.substr(-1)=='4')location.href='address1.php';
if(obj.str.value.substr(-1)=='6')location.href='address2.php';
return true;
}
</script>
</head>
<body>
<form action='xx.php' method='post' onsubmit='return goto(this)'>
<input type='text' name='str' size='50'>
<input type='submit' name='submit' value='GO'>
</form>
</body>
</html>
热心网友
时间:2022-04-18 15:45
<?php
$a=1;
?>
<input type="text" name="x" id="xx">
<input type="button" value="判断跳页" onclick="fun()">
<script>
function fun(){
var v=document.getElementById("xx").value;
alert(v);
var m=v.substring(v.length-1,v.length);
alert(m);
if(m>='0' && m<='9') window.open("http://www.baidu.com/");
else window.open("http://www.google.com/");
}
</script>
所以和php没有直接联系
热心网友
时间:2022-04-18 17:37
可以
热心网友
时间:2022-04-18 19:45
可以
echo "window.location.href=''";
热心网友
时间:2022-04-18 22:09
PHP是后台语言,JS是前台脚本语言