欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Web前端笔记-浏览器控制台调用js函数及vue函数

程序员文章站 2023-12-27 08:53:58
...

界面是这样的

Web前端笔记-浏览器控制台调用js函数及vue函数

源码如下:

index.html

<html>
<head>
</head>

<body>
<h1>Hello World</h1>
<script type="text/javascript" src="js.js"></script>

<script type="text/javascript">

	function callFunctionDemo(){

		alert("Hello World");
	}
	
</script>

</body>

</html>

js.js

;

function jsFileCall(){
	
	
	alert("jsFileCall");
}

在控制台中调用

jsFileCall()

通过这种方式就可以进行弹窗了。

Web前端笔记-浏览器控制台调用js函数及vue函数

下面是vue中,首先在指定的vue文件中

export default {

  name: 'HelloWorld',
  data () {
    return {
    }
  },
  mounted() {
    window.mainPage = this;
    this.init();
  },
  methods:{

    callVueFunction(){

      alert("callVueFunction");
    },
   ....
   ....
   ....
}

这样的话在vue中进行调用:

Web前端笔记-浏览器控制台调用js函数及vue函数

 

上一篇:

下一篇: