pemilih jquery dilumpuhkan


  Hasil terjemahan:

dilumpuhkan

Bahasa Inggeris [dɪsˈeɪbld] AS [dɪsˈebəld]

adj. cacat

v

pemilih jquery dilumpuhkansintaks

Fungsi: pemilih yang dilumpuhkan memilih semua elemen borang yang dilumpuhkan.

Sintaks: $(":dilumpuhkan")

pemilih jquery dilumpuhkancontoh

<html>
<head>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript"> 
 
$(document).ready(function(){
    $(":disabled").css("background-color","#B2E0FF");
});
 
</script>	
</head>
<body>
<html>
<body>
<form action="">
Name: <input type="text" name="user" />
<br />
Password: <input type="password" name="password" disabled="disabled" />
<br />
<button type="button">Useless Button</button>
<input type="button" value="Another useless button" disabled="disabled" />
<br />
<input type="reset" value="Reset" />
<input type="submit" value="Submit" disabled="disabled" />
<br />
</form>
</body>
</html>
</body>
</html>
Jalankan Instance »

Klik butang "Run Instance" untuk melihat contoh dalam talian

Rumah

video

Soal Jawab