デバッグ コード 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 キーを押すか、ページを更新すると、すべてが期待どおりに機能します。
迷っています。