这是我尝试在IE浏览器上执行的简单示例。但在Chrome中,Mozilla浏览器这个例子很有效。但是没有在IE浏览器上运行。如何克服这个问题。我真的坚持了下来。帮助我。例子是
<!DOCTYPE html>
<html>
<script>
function doAlert(){
alert("Alert is Working");
}
</script>
<body>
<button type="button" onclick="doAlert()">
Click me to display Date and Time.</button>
</body>
</html>