私の新しいプロジェクトでは、jQuery を使用せずにいくつかのコンテンツを実行する必要があります。私はこのjQueryコードを持っています:
$(document).ready(function() {
maxHeight = $("#container").height();
lastSize = 9;
while($("#content").height()<maxHeight && lastSize < 1000)
{
lastSize++;
$("#content").css("font-size", lastSize);
}
lastSize--;
$("#content").css("font-size", lastSize);
});
このチュートリアルを使用して、純粋な JavaScript で書き直そうとしていますが、正しく機能していません :/ これまでに得たものは次のとおりです。
document.addEventListener('DOMContentLoaded', function() {
maxHeight = document.getElementById('container').clientHeight;
lastSize = 9;
while(document.getElementById('content').clientHeight<maxHeight && lastSize < 1000)
{
lastSize++;
document.getElementById('content').style.fontSize=lastSize;
}
lastSize--;
document.getElementById('content').style.fontSize=lastSize;
});
コードの何が問題になっていますか?