Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果以下工作:
alert( data.query.results.tbody[1].tr[0].td[0].span.img.src );
为什么这不起作用?
var image = data.query.results.tbody[1].tr; alert( image[0].td[0].span.img.scr );
第二个警报给了我:
Undefined
将拼写修复scr为src:-)
scr
src
alert( image[0].td[0].span.img.src );
我有一个简单的 CakePHP 应用程序,在我的视图中,我为每个视图动态设置标题:
<? $this->viewVars['title_for_layout'] = 'Wicked Awesome Title' ?>
但是在我的一台机器上,代码没有运行,而是输出到浏览器窗口,就好像它不是被识别的 PHP 代码一样。