与PHP链接的按钮

时间:2014-04-15 15:32:56

标签: javascript php

我不知道如何介绍这个,我有一个问题...... 好的,这里是代码:

<button class="a2 menu-button-start" onclick="<?php echo "window.location.href = \"index.php?p=129&l=$lang\";"; ?>" id="a2a">Home</button>

这是我的问题: 它没有把我带到链接。

除了p变量定义页面之外,我没有太多话要说,l变量定义了语言。 我认为你不需要知道任何其他事情。

4 个答案:

答案 0 :(得分:1)

<button class="a2 menu-button-start" onclick="<?php echo "window.location.href = 'index.php?p=129&l=" . $lang . "';"; ?>" id="a2a">Home</button>

答案 1 :(得分:1)

我会这样做,因为你只是动态地获得$ lang:

<button class="a2 menu-button-start" onclick="window.location.href='index.php?p=129&l=<?php echo $lang ?>';" id="a2a">Home</button>

答案 2 :(得分:0)

尝试这样:

<input type="button" value="Home" onclick="goToPage();" id="a2a">

<script>
function goToPage() {
<?php echo "window.location.href = 'index.php?p=129&l=' . $lang; . '";"' ?>
}
</script>

答案 3 :(得分:0)

应该是

     onclick="window.location.href=<?php echo 'index.php?p=129&l='.$lang;?>;"