|
|
|
|
ũ Ŭ ̵ .
- HTML -
-
- <div class="nolink">
-
<a href="http://google.com" target="_blank">google</a>
-
<a href="javascript:location.href='http://naver.com'" target="_blank">google2</a>
-
<a href="javascript:;" onclick="location.href='http://naver.com'" target="_blank">google3</a>
-
<button onclick="location.href='http://naver.com'">naver</button>
- </div>
- JS -
- jQuery(function($){
- var $preview_zone = $('.nolink');
- var msg = 'alert message';
- $preview_zone
- .find('a, [onclick]').on('click', function(){
- alert(msg);
- return false;
- })
- .prop('onclick', null);
- ;
- });
attr prop ѵ ٸ.
attr Ӽ ڿ "checked" , prop Ӽ Boolean true, false Ѵ.
- // Correct if changing the attribute is desired
- $(elem).attr("checked", "checked");
-
- // Correct for checking the checkbox
- $(elem).prop("checked", true);
-
- // Correct if removing the attribute is desired
- $(elem).removeAttr("checked");
-
- // Correct for clearing the checkbox
- $(elem).prop("checked", false);
|
|
|
|
|
|
|
|
|
|
ϱ
|
ϱ
|
|
|
|
|
|
|