Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在页面后面的代码中以编程方式更改下面的 .page 宽度值?
我需要根据页面上其他元素的宽度来设置它,这些元素会根据用户操作而不断变化。
.page { width: 1900px; margin: 0px auto 0px auto; position:fixed; }
如何从 c# 代码更改它,它的语法是什么?
如果你想使用 jQuery,你可以用 jQuery 来做 -
<script type="text/javascript"> $(document).ready(function() { $('.page').css('width', $('.otherElementClass').width()+'px'); }); </script>