黑马程序员技术交流社区

标题: Jquery脚本错误 [打印本页]

作者: 丁艳姣    时间: 2012-10-25 13:38
标题: Jquery脚本错误
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml" >
<head>
    <title></title>
    <script src="javascript/jquery-1.4.4.js" type="text/javascript"></script>
    <script type="text/javascript">
        function sayHello(txt) {
            $("#"+txt).val("hello");
        }
    </script>
</head>
<body>
    <input type="text" id="hello" />
</body>
</html>

但是却报了脚本错误,请问这是为什么呀?  $("#"+txt).val("hello");这种写法有问题吗?
作者: 舒远    时间: 2012-10-25 14:05
这种写法本身没有错误的。具体代码报了什么脚本错误。可以贴出来吗?
作者: dqzg12300    时间: 2012-10-25 14:13
这种写法是没有错误的。我已经测试了,没问题可以用
<head>
    <title></title>
    <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script type="text/javascript">
        function sayHello(txt) {
            $("#" + txt).val("hello");
        }
        function btn() {
            sayHello("hello");
        }
    </script>
</head>
<body>
<input type="text" id="hello" />
<input type="button" onclick="btn()" value="确认"/>
</body>
</html>




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2