向变量添加一些内容

发布于 2024-11-29 16:15:20 字数 328 浏览 1 评论 0原文

我有代码

  <script type="text/javascript">
  var yourImg = document.getElementById('image');
  if(yourImg && yourImg.style) {
    yourImg.style.height = screen.availWidth;
   yourImg.style.width = screen.availHeight;
  }
  </script>

,我需要将 px 附加到宽度和高度的末尾。

提前致谢, 追赶

I have the code

  <script type="text/javascript">
  var yourImg = document.getElementById('image');
  if(yourImg && yourImg.style) {
    yourImg.style.height = screen.availWidth;
   yourImg.style.width = screen.availHeight;
  }
  </script>

And I need to append px to the end of the width and height.

Thanks in Advance,
Chase

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

何以畏孤独 2024-12-06 16:15:20

JavaScript 中的字符串(和其他值)的串联是使用“+”(加号)字符进行的。在你的代码中:

 <script type="text/javascript">
  var yourImg = document.getElementById('image');
  if(yourImg && yourImg.style) {
    yourImg.style.height = screen.availWidth;
    yourImg.style.width = screen.availHeight;
    var height = yourImg.style.height + 'px';
    var width = yourImg.style.width + 'px';
   }
  </script>

Concatenation of strings (and other values) in javascript is made using the "+" (plus) character. In your code:

 <script type="text/javascript">
  var yourImg = document.getElementById('image');
  if(yourImg && yourImg.style) {
    yourImg.style.height = screen.availWidth;
    yourImg.style.width = screen.availHeight;
    var height = yourImg.style.height + 'px';
    var width = yourImg.style.width + 'px';
   }
  </script>
情丝乱 2024-12-06 16:15:20

您实际上没有提供太多信息,但是:

screen.availWidth + 'px';
screen.availHeight + 'px';

You didn't really provide much information, but:

screen.availWidth + 'px';
screen.availHeight + 'px';
趁年轻赶紧闹 2024-12-06 16:15:20

yourImg.style.height = screen.availWidth+'px';

yourImg.style.width = screen.availHeight+'px';

yourImg.style.height = screen.availWidth+'px';

yourImg.style.width = screen.availHeight+'px';

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文