jquery没有在页面中工作

时间:2017-06-10 13:59:41

标签: javascript jquery wordpress

我正在使用wordpress多站点,尝试将以下代码添加到页面中,方法是将其复制到文本视图中。

<script type="text/javascript">
function GetTel() {
     $("#showtel").load("http://example.com/tel.php?id=2");
    return false;
}
</script>

<div id="showtel"></div> 

我在测试php文件中使用相同的代码并且它可以工作,但是当添加到wordpress页面时它不起作用。

1 个答案:

答案 0 :(得分:0)

关闭第一个括号(括号)

function GetTel() {
    $("#showtel").load("http://example.com/tel.php?id=2");
                                                       ^^^
    return false;
}