• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:[javascript]DOCTYPE宣言対応についてお教え下さい。)

[Javascript] How to Fix Issues with DOCTYPE Declaration

このQ&Aのポイント
  • Learn how to fix issues with DOCTYPE declaration in JavaScript and ensure proper functionality.
  • Understand why JavaScript may not work with DOCTYPE declaration and how to resolve this problem.
  • Find out how to correctly specify the size and positioning of elements in JavaScript when using DOCTYPE declaration.

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

function effect() {  var element = document.getElementById("sample");  var r = document /*@cc_on @if(1) [document.compatMode == 'CSS1Compat' ?   'documentElement' : 'body'] /*@else@*/ .defaultView /*@end@*/;  var style = element.style;  style.backgroundColor = 'red';  style.width = (r./*@if(1) clientWidth @else@*/ innerWidth /*@end@*/ - 500) + 'px'; } こういうの?

すると、全ての回答が全文表示されます。

関連するQ&A