我会加载一个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");
加载输入正常,但未填充该值。该值仅在输入中闪烁。问题在哪里?
非常感谢。
答案 0 :(得分:3)
尝试使用load
函数的回调参数 -
$("#property").load("/rect.html",function() {
$('#x').val("5");
});
在您尝试填充文本框之前,应该确保文本框可用。