我无法将内容置于此页面的第二个p
内:
<body>
<p>First: <code></code></p>
<p>Second: <code></code></p>
</body>
我正在使用此代码
var d, firstp, secondp;
d = new Date();
firstp = $$('p:index(0)');
secondp = $$('p:index(1)');
firstp.set('text', d);
secondp.set('text', d); // not changing the dom
我知道我能做到
paragraphs = $$('p');
firstp = paragraphs[0];
secondp = paragraphs[1];
但为什么使用Slick选择器不返回任何值?
由于