-
ITMISS
直接上代码<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=GBK" /><title> 光标聚焦事件 </title><script type="text/ecmascript" src="jquery.js"></script><script type="text/javascript">//function btnclick(){// var box=document.getElementById('box');// var boxS=box.outerHTML;// alert(boxS);// }$(function(){$('#btn').click(function(){var $boxS=$('#box').prop('outerHTML');alert($boxS);});})</script></head><body><div id="box"><a href="#">不知道是不是这样的</a></div><input type="button" id="btn" value="获取" onClick="btnclick()" /></body></html>
-
慕斯709654
PrintPreviewDialog pPDlg;exec_prefix='NONE'PACKAGE='libevent'PACKAGE_BUGREPORT=''PACKAGE_NAME=''PACKAGE_STRING=''PACKAGE_TARNAME=''PACKAGE_URL=''PACKAGE_VERSION=''PATH_SEPARATOR=':'
-
人到中年有点甜
原生:var ceshi=document.getElementById('ceshi');alert(ceshi.outerHTML);jQuery:alert($('#ceshi').prop('outerHTML'));