mniui 目录树点击树节点自动把内容添加到input框里面 在pc端可以 但是在移动端添加不进去 有大神帮忙解决一下啊 多谢多谢 附上代码
`<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="miniui/boot.js" type="text/javascript"></script>
</head>
<body>
<h1>TreeSelect 树形选择框</h1>
<h4>多选s</h4>
<input id="select1" class="mini-treeselect" url="./data/listTree.txt"
textField="text" valueField="id" parentField="pid"
showFolderCheckBox="false" expandOnLoad="true" showClose="true"
popupWidth="200"
/>
<br /><br />
<input type="button" value="setValue" onclick="setValue()"/>
<input type="button" value="getValue" onclick="getValue()"/>
<input type="button" value="disable" onclick="disable()"/>
<input type="button" value="enable" onclick="enable()"/>
</script>
</body>
</html>
`