mikezang Posted June 15, 2010 Share Posted June 15, 2010 I have a form as below, the sFilename will be changed in aspx.cs, I hope the table will be showed after sFilename changed, what can I do? <table border=0> <tr class='result'><th width=120>画像ファイル名</th><th width=120>商品コード</th><th width=120>アップロード結果</th></tr> <tr class='result'><td align=center id='filename'><% =sFilename %></td><td align=center><% =sGoods %></td><td align=center><% =sResult %></td></tr> </table><br /><br /> <script type="text/javascript"> $(document).ready(function() { $('.result').hide(); $('#filename').change(function() { $('.result').show(); }); }); </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.