我有一个像这样的HTML:
<input type="text" style="size:3; width: 300px;" id="test">
Shadow Content
<div>test</div>
这是我的Safari浏览器中显示的层次结构。我需要获得<div>
的值。
我试过了:
$("#test > div") //doesnt work
$("#test *") //doesnt work
$("#test").find("*") //doesnt work
我如何找到div?为什么以上代码不起作用?