JS - 为什么我的JavaScript src没有工作?

时间:2017-03-15 17:55:09

标签: javascript jquery

这是我的代码的摘录:

<form name="calculator">
<input type="button" name="latest" value="You are not using the latest version.">
<script src="http://www.alvinneo.com/bulbuleatsfood.js">
if(latest-version==="1.0.4.2"){
document.calculator.latest.value="You are using the latest version.";
};
</script>
</form>

出于某种原因,这不起作用。有什么提示吗?

1 个答案:

答案 0 :(得分:1)

根据docs

  

的src:

     

此属性指定外部脚本的URI;这个可以   用作直接在脚本中嵌入脚本的替代方法   文献。如果脚本元素指定了src属性,则应该   没有在其标签中嵌入脚本。

将您的代码更改为:

<form name="calculator">
  <input type="button" name="latest" value="You are not using the latest version.">

  <!-- script with src (not containing embedded code) -->
  <script src="http://www.alvinneo.com/bulbuleatsfood.js"></script>

  <!-- another script (containing embedded code but not src) -->
  <script>
    if(latest-version === "1.0.4.2") {
      document.calculator.latest.value = "You are using the latest version.";
    };
  </script>
</form>