0

我有一个包含 javascript 的 php 文件(一个表单)来检查是否所有输入都已填写。当我直接查看 php 文件时,js 工作得很好,但是当我在另一个页面中包含 PHP 文件时,javascript 不再工作。

我的 JavaScript 代码:

<script type="text/javascript" src="../js/modernizr.js"></script>
<script type="text/javascript"> 
window.onload = function(){
    document.getElementById("topField").setAttribute("autocomplete","off");
    }

window.onload = function() {
    // get the form and its input elements
    var form = document.forms[0],
        inputs = form.elements;
    // if no autofocus, put the focus in the first field
    if (!Modernizr.input.autofocus) {
        inputs[0].focus();
    }
    // if required not supported, emulate it
    if (!Modernizr.input.required) {
        form.onsubmit = function() {
            var required = [], att, val;
            // loop through input elements looking for required
            for (var i = 0; i < inputs.length; i++) {
                att = inputs[i].getAttribute('required');
                // if required, get the value and trim whitespace
                if (att != null) {
                    val = inputs[i].value;
                    // if the value is empty, add to required array
                    if (val.replace(/^\s+|\s+$/g, '') == '') {
                        required.push(inputs[i].name);
                    }
                }
            }
            // show alert if required array contains any elements
            if (required.length > 0) {
                alert('The following fields are required: ' +
                    required.join(', '));
                // prevent the form from being submitted
                return false;
            }
        };
    }
}

</script>
4

1 回答 1

0

这是对以后发现此问题的任何人的解释。在 javascript 中,您只能将单个函数附加到事件处理程序。如果要附加更多,则需要将它们链接起来。几乎所有的 javascript 框架/库都有某种方法来处理事件链。

Javascript 允许您将函数视为变量。因此,您可以将旧的 onload 函数分配给变量,然后稍后在新的 onload 函数中调用它。

如果您不使用框架,则可以执行类似的操作来处理事件链。

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

您可以使用以下方式调用它:

addLoadEvent(function(){
  // Some code here
});
于 2013-03-11T16:30:57.583 回答