元素未定义Uncaught ReferenceError

时间:2018-11-26 07:20:17

标签: jquery html woocommerce

我有这个Uncaught ReferenceError 未定义的元素,它不明白。我的问题是此脚本正在工作,但是导致此错误的原因是我的其他脚本没有正常工作

谁能给我我为什么未定义元素错误的原因?

在我的woocommerce main.js文件中(jQuery = $)

jQuery("body").delegate(".checkout", "click",function(e){
 jQuery('label').each(function(){
 var $getElement= jQuery(this).attr("for")
   if($getElement== "billing_state" ){
     var html = element.html();
     element.html(html + "<abbr class=\"required\">*</abbr>");
   }
 });
});

此行出现错误 var html = element.html();

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

我想应该是:

 extension UIView {

        @IBInspectable
        /// Should the corner be as circle
        public var circleCorner: Bool {
            get {
                return min(bounds.size.height, bounds.size.width) / 2 == cornerRadius
            }
            set {
                cornerRadius = newValue ? min(bounds.size.height, bounds.size.width) / 2 : cornerRadius
            }
        }
    }

代替:

var html = $getElement.html();