我只是一個初學者。 是否有代碼使用兩個不同的圖像作爲按鈕來禁用和啓用。大多數示例使用兩個單獨的按鈕,但我需要使用帶有兩個圖像的單個按鈕:一個用於關閉,另一個用於打開。交換圖像以啓用/禁用DIV
$(function() {
$("#Enable").click(function(){
$(".div1 *").prop('disabled',true);
});
$("#Disable").click(function(){
$(".div1 *").prop('disabled',false);
});
});
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>test</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link href="css/multitoggle.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script language="javascript" type="text/javascript"></script>
</head>
<body>
<div class="div1">
Name:<input type="text" id="fullname" value="name"/><br>
<br>
<input type="button" id="button1" value="Submit "/>
<div></div>
</div>
<input type="image" src="assets/trans_off.jpg" id="Enable" value="Enable"/>
<input type="image" src="assets/trans_on.jpg"id="Disable" value="Disable"/>
</body>
</html>
$(」。DIV1" )隱藏()。爲隱藏$(「。div1」)。show();爲顯示隱藏的div希望這可以幫助 – akhilsk
http://stackoverflow.com/documentation/jquery/389/selectors#t=201702231059237385042 – akhilsk