1
我使用的插件在這裏http://plugins.jquery.com/project/autogrow和我在Internet Explorer和Chrome(不火狐)有一個問題自動增長jQuery插件在互聯網動態內容資源管理器
下面見代碼:
<script type="text/javascript">
$(document).ready(function() {
$('#main').html('<textarea class=\"test\">aaaa</textarea>');
$('.test').autogrow();
</script>
</head>
<body>
<div id="main">
</div>
</body>
</html>
基本上如果元素在啓動頁面後是新的,它不起作用。所以,我攻入了插件了一下,改變使用的liveQuery(68行)
this.textarea.livequery(function() {
$(this).focus(function() {self.startExpand()});
$(this).blur(function() {self.stopExpand()});
});
仍然無法正常工作,雖然Firefox是確定這些線不過。
你能幫忙嗎?
我和你說的一樣,但沒有工作。你還有其他地方有改變嗎? – 2009-09-16 07:17:20
沒關係。我將代碼改回原來的並且工作了! – 2009-09-16 07:24:54