우선 이거부터 불러와야됨


 if (typeof Object.assign != 'function') {
  // Must be writable: true, enumerable: false, configurable: true
  Object.defineProperty(Object, "assign", {
    value: function assign(target, varArgs) { // .length of function is 2
      'use strict';
      if (target == null) { // TypeError if undefined or null
        throw new TypeError('Cannot convert undefined or null to object');
      }

      var to = Object(target);

      for (var index = 1; index < arguments.length; index++) {
        var nextSource = arguments[index];

        if (nextSource != null) { // Skip over if undefined or null
          for (var nextKey in nextSource) {
            // Avoid bugs when hasOwnProperty is shadowed
            if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
              to[nextKey] = nextSource[nextKey];
            }
          }
        }
      }
      return to;
    },
    writable: true,
    configurable: true
  });
}
 

'JAVA > Jquery' 카테고리의 다른 글

jquery 프린트하기  (0) 2018.02.01
jquery 천단위콤마 정규식  (0) 2016.12.23
jquery js불러오기  (0) 2016.12.21
jquery 쿠키조회  (0) 2016.12.09
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
블로그 이미지

왕왕왕왕

,

$(document).ready(  function() {


 $("#print").click(function(){
  var printWindow = window.open("", "", "width=1000,height=500");
  printWindow.document.write("<img src='http://www.smotor.com/kr/images/event/cupon1.jpg' style='width:100%;'>");
 
  printWindow.document.write("<script>  setTimeout(function(){ window.print(); }, 1000); </script>");
  printWindow.document.close(); // IE >= 10에 필요
        printWindow.focus();

  return false; 
  
 });
});

 

 

 

블로그 이미지

왕왕왕왕

,

(\d)(?=(?:\d{3})+(?!\d))


function addComma(n) {
 var reg = /(^[+-]?\d+)(\d{3})/;
 n += '';

 while (reg.test(n)) {
  n = n.replace(reg, '$1' + ',' + '$2');
 }

 return n;
}

블로그 이미지

왕왕왕왕

,

jquery js불러오기

JAVA/Jquery 2016. 12. 21. 10:29
function loadJQuery() {
var oScript = document.createElement("script");
oScript.type = "text/javascript";
oScript.charset = "utf-8";
oScript.src = "http://code.jquery.com/jquery-1.6.2.min.js";
document.getElementsByTagName("head")[0].appendChild(oScript);
}


'JAVA > Jquery' 카테고리의 다른 글

jquery 프린트하기  (0) 2018.02.01
jquery 천단위콤마 정규식  (0) 2016.12.23
jquery 쿠키조회  (0) 2016.12.09
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
JQUERY dialog 기본형태  (0) 2016.12.09
블로그 이미지

왕왕왕왕

,

jquery 쿠키조회

JAVA/Jquery 2016. 12. 9. 14:11

function getCookie(key) {

var cook = document.cookie + ";";

var idx = cook.indexOf(key, 0);

var val = "";

if (idx != -1) {

cook = cook.substring(idx, cook.length);

begin = cook.indexOf("=", 0) + 1;

end = cook.indexOf(";", begin);

val = unescape( cook.substring(begin, end) );

}

return val;

}

'JAVA > Jquery' 카테고리의 다른 글

jquery 천단위콤마 정규식  (0) 2016.12.23
jquery js불러오기  (0) 2016.12.21
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
JQUERY dialog 기본형태  (0) 2016.12.09
jquery ajax 기본형태  (0) 2016.12.08
블로그 이미지

왕왕왕왕

,

function setCookie(name, value, expiredays) {

var today = new Date();

today.setDate(today.getDate() + expiredays);

document.cookie = name + "=" + escape(value) + "; path=/; secure=true ; httponly=true; expires=" + today.toGMTString() + ";";

}

'JAVA > Jquery' 카테고리의 다른 글

jquery js불러오기  (0) 2016.12.21
jquery 쿠키조회  (0) 2016.12.09
JQUERY dialog 기본형태  (0) 2016.12.09
jquery ajax 기본형태  (0) 2016.12.08
jquery 취소이벤트에 의한 폼초기화  (0) 2016.12.08
블로그 이미지

왕왕왕왕

,

$('#dialog').dialog({

modal:true

,title:'확인'

,dialogClass:'dialog'

,width:'auto'

,position: ({

  my: "center",

  at: "center",

  of: window

})

,buttons:{

'예': function(){

$(this).dialog("close");

if(fnObj1!=undefined && fnObj1!=null){

        $(fnObj1);

        }

}

,'아니오': function(){

$(this).dialog("close");

if(fnObj2!=undefined && fnObj2!=null){

        $(fnObj2);

        }

}

,'취소': function(){

$(this).dialog("close");

if(fnObj3!=undefined && fnObj3!=null){

        $(fnObj3);

        }

}

}

,open: function (event, ui) {

$(':button.ui-dialog-titlebar-close').focus();

        }

   });



블로그 이미지

왕왕왕왕

,

$.ajax({

url : "url써주기",

type : "POST",

contentType : "application/x-www-form-urlencoded; charset=UTF-8",

data : $("#폼아이디").serialize(),

dataType : "json",

success : function(response) {

if (response != null) {

if (response.status != 'error') {

alert("저장 되었습니다.");

var form = document

.getElementById('폼아이디');

form.action = "url써주기";

form.submit();

}


else {

alert(response.message);

}

}

},

error : function(request, status, erreo) {

         alert(request.reponseText);

}

});

블로그 이미지

왕왕왕왕

,