无法弄清楚如何在我的网页中实现以下 jQuery 插件

发布于 2024-12-05 12:32:42 字数 1006 浏览 0 评论 0原文

我一直在寻找当用户输入内容时可以授权文本框的东西,我发现了这个理想的插件:

http://james.padolsey.com/javascript/jquery-plugin-autoresize/

这看起来很简单,但由于某种原因我无法在我的网站上实现它>。<你们对如何做有什么想法吗? (阅读帖子) 谢谢)))

这是我尝试过的,但它不起作用

HTML

<head>
<script type="text/javascript" src="js/jquery-1.6.js"></script>
<script type="text/javascript" src="js/autoresize.jquery.js"></script>
<script type="text/javascript">

$('textarea.mainStatusTxt').autoResize({
// On resize:
onResize : function() {
$(this).css({opacity:0.8});
},
// After resize:
animateCallback : function() {
$(this).css({opacity:1});
},
// Quite slow animation:
animateDuration : 300,
// More extra space:
extraSpace : 40
});

</script>
</head>

<body>
<textarea class="mainStatusTxt" placeholder="Comment" style="display:block;"></textarea>
</body>

I've been looking for something that will authorize a textbox when user types something and I found this ideal plugin:

http://james.padolsey.com/javascript/jquery-plugin-autoresize/

It seems prety straight forward, but for some reason I can't implement it on my website >.< do you guys have any ideas on how to do it? (read the post)
Thank You )))

Here is what I tried, but it doesn't work

HTML

<head>
<script type="text/javascript" src="js/jquery-1.6.js"></script>
<script type="text/javascript" src="js/autoresize.jquery.js"></script>
<script type="text/javascript">

$('textarea.mainStatusTxt').autoResize({
// On resize:
onResize : function() {
$(this).css({opacity:0.8});
},
// After resize:
animateCallback : function() {
$(this).css({opacity:1});
},
// Quite slow animation:
animateDuration : 300,
// More extra space:
extraSpace : 40
});

</script>
</head>

<body>
<textarea class="mainStatusTxt" placeholder="Comment" style="display:block;"></textarea>
</body>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最佳男配角 2024-12-12 12:32:42

要么用以下内容包装脚本,

$(document).ready(function() {
  //YOUR CODE
});

要么将整个

Either wrap your script with:

$(document).ready(function() {
  //YOUR CODE
});

or move the entire <script> tag to the end of the document (or at least, after the <textarea>).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文