我有HTML和javascript代码:
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function()
{
$("#test").attr("maxlength", "15");
$("#test").attr("xxx", "15");
});
</script>
</head>
<body>
<textarea id="test" ></textarea>
</body>
</html>
我的问题是:
为什么这段代码:$("#test").attr("maxlength", "15");
给我一个错误:
未找到成员文件:jquery.js,行:2582,列:4
但是这段代码:$(“#test”)。attr(“xxx”,“15”);不会抛出错误。
我正在使用IE 7