<!DOCTYPE html>
<html>
<body>

<input type="week" id="myWeek"><br><br>

<button onclick="disableBtn()">Disable Week Field</button>
<button onclick="undisableBtn()">Undisable Week Field</button>

<p><strong>Note:</strong> input elements with type="week" are not supported in Internet Explorer or Firefox.</p>

<script>
function disableBtn() {
    document.getElementById("myWeek").disabled = true;
}

function undisableBtn() {
    document.getElementById("myWeek").disabled = false;
}
</script>

</body>
</html>