javascript中的问题?
在javascript中,有一段代码:
<script>
(funtion a(){
……
})()
</script>
这中的(funtion ……)()
中的两个小括号是什么意思?
------解决方案--------------------$(function(){});方式是jquery里面的写法呀,是一个意思!!
------解决方案--------------------这个是自运行。
你在你的js里面写一个
(function hello(){
alert(1);
})();
可以理解为
function hello(){
alert(1);
}
hello();