我们说我有一个可以使用jQuery的脚本文件。
//script.js
shuffleGridView: function (i, j) {
var h = this.element.find(this.options.gridSelector),
f = i ? this.options.colsSidebarClosed : this.options.colsSidebarOpen,
g = i ? this.options.colsSidebarOpen : this.options.colsSidebarClosed;
if (d.AsSupport.transition && !d.AsSupport.touch) {
j = j || 1;
d.AsGridShuffle(h, {
startColCount: f,
endColCount: g,
startIndex: j
})
}
}
我想做什么,从firebug控制台调用此函数(shuffleGridView)。有没有办法调用这个函数?
答案 0 :(得分:0)
shuffleGridView
似乎是对象的属性。
如果对象位于全局域名中,则在控制台中运行:
objectName.shuffleGridView(value1,value2);
无需在浏览器控制台中使用console.log()
...它将按原样运行。
例如将其粘贴到控制台:
var foo="bar";
foo
应该看到"bar"
输出