This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ObjectUtils { | |
public static boolean equalsAny(Object obj, Object... others) { | |
if (others != null) { | |
for (Object other : others) { | |
if (Objects.equals(obj, other)) { | |
return true; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
if (!$.browser.msie) { | |
// IE11は認識されないため、下記の対応を行います。 | |
var ua = navigator.userAgent.toLowerCase(); | |
var rmsie = /(trident)(?:.*? rv:([\w.]+))/; | |
var match = ua.indexOf('compatible') < 0 && rmsie.exec(ua) || []; | |
if (match[1] === 'trident') { | |
$.browser['msie'] = true; | |
$.browser.version = match[2] || '0'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input id="openButton" type="button" value="Open" /> | |
<div id="dialog"> | |
<form id="form"> | |
<input type="text" id="name" name="name" /> | |
<input type="text" id="pinCode" name="pinCode" /> | |
</form> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='calendar'></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="text" id="year" value="2016">年 | |
<input type="button" value="実行" onclick="execute()"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<video id="video" autoplay controls></video> |