我有一段调试代码 MyPartialContent.ascx: (从 jquery ajax 调用返回并使用 $("#container").val(html); 插入 DOM;其中 html 是下面的代码块
<input type"text" id="mydebugtextbox" value="world"/> -- shows a text box on web page with "world"
$("#mydebugtextbox").val("hello");
-- Should set value to "hello";
alert($("#mydebugtextbox").val());
-- should alert "hello" and it does but
-- the textbox on the page still shows "world"
这仅在最初加载页面时发生。如果我按 f5 或刷新页面,那么一切都会按预期工作。
我搞不清楚了。