我正在使用
$('#myElement').prop('outerHTML')
将其对象模型作为字符串接收。
问题是,当我使用
时$('#myElement').prop('outerHTML')
我只能获取Element的属性(如class,id,styles,...)。当谈到h3标签或p标签时,我收到的字符串必须“满足”。
在jQuery或Javascript中是否有一种方法可以使用它的属性和内容来接收对象模型?非常感谢你。
答案 0 :(得分:2)
这个脚本将完成你的工作。请按照::
<script type="text/javascript">
$(document).ready(function() {
$("#myElement").wrap('</p>').parent().html(); // For getting full element as string
$("#myElement").attr('YOUR_ATTR'); // For getting any attribute of that elemnt
});
</script>
答案 1 :(得分:1)
在主节点Object.attr()
上使用$('#myElement')
功能。请参阅http://api.jquery.com/attr/