使用jquery和php的墙贴

时间:2014-04-09 01:21:43

标签: php

我想制作代码以便发表评论并与其他人分享 当我运行此代码并撰写评论时,它什么都不打印 注意:我从youtube上的教程中获得了此代码。

<html>
<head>

<title>hesham</title>
</head>
<script src="jquery-1.6.1.min.js" type="text/javascript"></script>
<script type="text/javascrpt">
function get()
{
    var input = $('#cmt').val();
    $('#an').prepend(input);
};
</script>

<body>
<form name="frm">
<input type="text" name="cmt" id="cmt" /><input type="button" value="post" onclick="get()" />                 
</form>
<div id="an" style="width:300px">
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

问题在于:

<script type="text/javascrpt">
                          ^-- // missing the "i"

它被误解了,这是一个轻微的错字。

将其更改为:

<script type="text/javascript">

它会起作用。

(测试)

您也可以将jQuery置于<head></head>,我的测试无论如何都可以。