<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$ (function ()
{
var content = $ ("#dong_tan")
var items = content.find ("ul")
items.each (function (i, dom)
{
dom.ontouchstart = function ()
{
touchStartt (this)
}
})
})
function touchStartt (item)
{
alert (item.innerHTML)
}
</script>
</head>
<body>
<div id="dong_tan">
<ul>
<li>dd1</li>
</ul>
<ul>
<li>dd2</li>
</ul>
<ul>
<li>dd3</li>
</ul>
<ul>
<li>dd4</li>
</ul>
</div>
</body>
</html>
touchend的时候,再重新 dispatchEvent 一个click事件出来,http://www.w3school.com.cn/xmldom/met_element_dispatchevent.asp