感謝您首先查看我的帖子!關於jQuery,爲什麼mouseenter()在<input>不起作用?
mouseenter()
正在爲標籤h2工作,但它不能在<input>
上工作。你能告訴我的代碼有什麼問題嗎?
$(document).ready(function() {
$("h2").mouseenter(function() {
$(this).css("background-color", "green");
});
$("input").mouseenter(function() {
$(this).css("background-color", "green");
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div>
<h2>Select Gaming Time:</h2>
<form method="post">
<input type="radio" name="time" value="5">5 Minute (Hard)
<input type="radio" name="time" value="8">8 Minutes (Normal)
<input type="radio" name="time" value="10">10 Minutes (Easy)
</form>
</div>
你想讓單選按鈕變成綠色還是其旁邊的文字? – BillyNate
它在處理輸入元素http://jsfiddle.net/5wbLnaep/ –
@ Tushar:輸入是無線電的,而不是文本。收音機不能被稱呼那麼多。 – BillyNate