私はjavascriptに関しては完全な初心者であり、別のdivを表示する単純なif/elseステートメントを作成しようとしています.
<script>
if (window.FileReader && Modernizr.draganddrop){
alert("Your browser supports drag and drop!!");
document.getElementById(no).style.display = 'none';
}else{
alert("Sorry, browser does not support drag and drop!");
document.getElementById(yes).style.display = 'none';
}
</script>
そして、体内で
<div id="yes">Drag and drop yes</div>
<div id="no">Drag and drop no</div>
modernizr は問題なく動作しますが、スクリプトは両方の div を表示します
どんな助けでも大歓迎です