2
這個腳本在沒有IE的所有主流瀏覽器(7/8)下運行良好。 你能告訴我如何使用IE做到這一點?如何更改輸入字段的輸入類型?
<!DOCTYPE html>
<html>
<head>
<script>
function change()
{
document.getElementById("red").type='password';
}
</script>
</head>
<body>
<form>
What color do you prefer?<br>
<input type="text" name="colors" id="red" value="Text">
</form>
<button type="button" onclick="change()">Change input type</button>
</body>
</html>