物体是什么意思?我试图从一个函数中通知一个返回的值,并且我在警报中得到了这个消息。以下是javascript代码<script type="text/javascript">$(function (){var $main = $('#main'),
$1 = $('#1'),
$2 = $('#2');$2.hide(); // hide div#2 when the page is loaded$main.click(function (){
$1.toggle();
$2.toggle();});
$('#senddvd').click(function (){
alert('hello');
var a=whichIsVisible();
alert(whichIsVisible());});function whichIsVisible(){
if (!$1.is(':hidden')) return $1;
if (!$2.is(':hidden')) return $2;}
});
</script>它是我想要检查的功能
3 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
[object Object]
for(var property in obj) { alert(property + "=" + obj[property]);}
$('#senddvd').click(function (){ alert('hello'); var a=whichIsVisible(); alert(whichIsVisible().attr("id"));});
添加回答
举报
0/150
提交
取消