(บันทึกกันลืม) jQuery ที่ได้ใช้งานบ่อยๆ
ตรวจสอบว่า Check Box ทำการ checked อยู่หรือเปล่า
1 2 3 4 5 6 7 8 9 10 11 |
<script type="text/javascript"> $(function(){ $('#addkeyword').click(function() { if($('#addkeyword').is(':checked')) { }else{ } }) }) </script> |
Check Box ทำการ Checked
1 |
$('#ID').attr('checked','checked'); |
Check Box เอา checked ออก
1 |
$('#ID').removeAttr('checked'); |
1 |
$("#ID").prop("disabled",true); |
Input form : เอา Disable ออก
1 |
$("#ID").prop("disabled",false); |
Clear
1 2 |
$("#ID").val(''); $('#ID').html('') |
SET
1 2 |
$("#ID").val('TestValue'); $('#ID').html('TestValue'); |
ตรวจสอบ Value
1 2 3 4 5 6 |
if($("#ID").val() == ""){ //code hear } if($('#ID').html() == 'TestValue'){ //code hear } |
1 2 3 |
$('[name="firstname"]').attr("placeholder","Please fill this form in english."); $([name="company"]').attr("autocomplete","off"); $('[name="campaignname"]').attr("value","TestCampaign"); |
1 2 3 4 |
var rows = $('table.searchUIBasic tr'); $("#advancesearch").change(function () { rows.filter('.advsearch').toggle(); }); |
1 2 3 4 |
$("#loading").show(); jQuery(window).load(function () { $("#loading").hide(); }); |