Jquery .load(),填充输入不起作用

时间:2011-11-29 21:18:01

标签: javascript jquery html jquery-selectors

我会加载一个html(在文件中:/retc.html): <input id="x" type="text" name="number" value="" size="5" />

到另一页的html div: <div id="property"></div>

我会在加载后填充输入值。

我在onclick函数中使用此脚本:

$("#property").load("/rect.html"); $('#x').val("5");

加载输入正常,但未填充该值。该值仅在输入中闪烁。问题在哪里?

非常感谢。

1 个答案:

答案 0 :(得分:3)

尝试使用load函数的回调参数 -

$("#property").load("/rect.html",function() {
    $('#x').val("5");
}); 

在您尝试填充文本框之前,应该确保文本框可用。