在<script =“text javascript”=“”src =“/ example.js”> </script =“text>中调用javascript函数

时间:2012-03-21 17:35:06

标签: javascript

您好我正在尝试调用<script>标记内的函数。 formatLink函数没有被调用。可以调用jms.js中的所有其他函数。我如何使它在jms.js中调用函数和我在脚本标签中声明的函数。

<script type="text/javascript" src="javascript/jms.js">
function formatLink(cellvalue) {  return cellvalue+"working";}
 </script>

2 个答案:

答案 0 :(得分:4)

像这样写:

<script type='text/javascript' src='javascript/jms.js'></script>
<script type='text/javascript'>
  function formatLink(cellvalue) { return cellvalue+"working"; }
</script>

答案 1 :(得分:1)

每个脚本都必须包含在自己的<script>标记中:

<script type="text/javascript" src="javascript/jms.js"></script>
<script type="text/javascript">
    function formatLink(cellvalue) {
         return cellvalue+"working"; 
    }
</script>