function selectclassname(){ $.ajax({ url:"queryschoolclasslists.action", async:false, dataType:"json", type:"post", success:function (formData) { var list = formData.listmodal; $.each(list,function(index,item){ var sel = docu…
本文始发于个人公众号:TechFlow 今天是周末,和大家一起来看一道算法题.这道题是大名鼎鼎的LeetCode的第一题,也是面试当中非常常见的一道面试题.题目不难,但是对于初学者来说应该还是很有意思,也是一道很适合入门的算法题. 废话不多说,让我们一起来看看题目吧. Given an array of integers, return indices of the two numbers such that they add up to a specific target. You…
今天又遇到了在安卓出包时,直接报错了两个错误,报错信息分别如下: Installation failed with the following output: pkg: /data/local/tmp/Package.apk UnityException: Unable to install APK! Installation failed. See the Console for details. 两个错误信息的详细描述如下: Installation failed with the foll…