clone方法在处理间隔号,就是ESC下面那个符号的时候,会取不到?
<html>
<head>
    <script type='text/javascript' src="jquery.js"></script>
<script type=text/javascript>
function a()
{
var t =document.getElementById("t1");
var t1=t.cloneNode(true);
alert(t1.title);
var t2=$("#t1").clone();
alert(t2.attr("title"));
}
</script>
</head>
<body onload="a();">
<input type=text id=t1 title='`'>
</body>
</html>