直接生成一个空的项目,里面放一个index.html,只放入下面一个下拉框标签,云端打包,手机端安装后,点击一下直接就退出了,选择的框都没出来。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>hello world</title>
<script type="text/javascript">
function helloworld(){
alert("hello world!")
}
document.addEventListener('plusready', function(){
});
</script>
</head>
<body>
<select name="" onchange="alert(this.value)">
<option value="阿迪发生地">阿迪发生地</option>
<option value="435345">435345</option>
<option value="梵蒂冈地方官梵蒂冈">梵蒂冈地方官梵蒂冈</option>
</select>
</body>
</html>