jquery 自动增长不工作
我无法让这个(http://plugins.jquery.com/project/autogrowtextarea)jquery 插件工作。下面是我的代码。我已经与其他几个网站检查了 autogrow.js 文件。谢谢。
代码:
<html>
<head>
<title>test7</title>
<script type="text/javascript" src="autogrow.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$("#txtInput").autoGrow();
});
</script>
<textarea id="txtInput" cols="40" rows="5"></textarea>
</body>
I cannot get this (http://plugins.jquery.com/project/autogrowtextarea) jquery plugin to work. below is my code. I have checked the autogrow.js file with several other sites. thanks.
code:
<html>
<head>
<title>test7</title>
<script type="text/javascript" src="autogrow.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$("#txtInput").autoGrow();
});
</script>
<textarea id="txtInput" cols="40" rows="5"></textarea>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 jQuery 本身不包括在内。
looks like jQuery itself is not included.