我正在使用textarea,并且我已经绑定了propertychange事件。以下是我使用的代码
$('#textareaID').bind('input propertychange', function() {});
但是只有在页面加载后textarea发生更改时,此事件才会触发。我希望它在页面加载时被触发。因为在页面加载时,我正在分配一个我希望它在那时发生的值。是否可以触发页面加载?
答案 0 :(得分:7)
是否手动触发它?
jsFiddle中的示例:http://jsfiddle.net/VAT83/
$(function() {
var textValue = $('#textValue');
$('#textareaID')
.bind('input propertychange', function() {
textValue.html($(this).val());
})
.trigger('propertychange');
});