我试图在javascript中运行php函数并将参数传递给该函数但没有运气。
这是我的代码:
var attribute = 1;
var element = getElementByID('wrapper').innerHTML="<?php echo myfunction("+attribute+");?>";
但我得到的结果是我的功能输出&#34; +属性+&#34;添加到它,而不是函数的正确输出。
功能本身很简单:
<?php myfunction($attribute){
echo 7+$attribute;
}?>
答案 0 :(得分:0)
Php将由服务器执行,但是一旦您的客户端开始处理javascript,服务器就不再涉及了。所以不,我不认为这是可能的。