1
是否可以從聚合物1中的子元素中選擇內容?在文檔中找不到任何關於它的內容,但這不起作用:是否可以從子元素中選擇內容?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents.js"></script>
<base href="http://polygit.org/polymer+:master/components/">
<link rel="import" href="polymer/polymer.html">
<dom-module id="my-element">
<template>
<content select="#aaa"></content>
</template>
<script>
HTMLImports.whenReady(function() {
Polymer({
is: "my-element"
});
});
</script>
</dom-module>
</head>
<body>
<my-element>
<div>
<div id="aaa">zzzzzzzzzzz</div>
</div>
</my-element>
</body>
</html>
2jamLêĐình:請您指出確切位置?找不到任何內容,但「元素支持通過簡單選擇器過濾節點的select屬性。」沒有人會說這個應該只在頂級elt上工作。在很多情況下,從深層獲得專業技能將非常方便。 –
user656449