如何从外部js函数正确调用内联js函数

时间:2017-11-01 06:26:19

标签: javascript jquery

我的外部js文件中有一个js函数,

function RefreshGrids() {
        BindPlanGrid();
    }

我的页面中也有一个js函数(内联)

<script>
    function BindPlanGrid() {
        Post("casesheet.aspx/BindPlanGrid", "{}", "BindPlanGrid", true);-->invoke a webmethod in the same page
    }
</script>

这可能吗?? 对不起纠正。我的意思是 是否可以从外部js调用我的函数

3 个答案:

答案 0 :(得分:0)

首先尝试<script type="text/javascript">alert("2");</script>

此属性是可选的。从Netscape 2开始,所有浏览器中的默认编程语言都是JavaScript。在XHTML中,此属性是必需且不必要的。在HTML中,最好不要使用它。浏览器知道该怎么做。

<script>
    function BindPlanGrid() {
        Post("casesheet.aspx/BindPlanGrid", "{}", "BindPlanGrid", true);-->invoke a webmethod in the same page
    }
</script>

答案 1 :(得分:0)

使用<script>标签。 <style>标记用于css

<script>
    function BindPlanGrid() {
        Post("casesheet.aspx/BindPlanGrid", "{}", "BindPlanGrid", true);-->invoke a webmethod in the same page
    }
</script>

答案 2 :(得分:0)

<script>标签就是你要找的。

<script>
    function BindPlanGrid() {
        Post("casesheet.aspx/BindPlanGrid", "{}", "BindPlanGrid", true);-->invoke a webmethod in the same page
    }
</script>