草稿

cd /home/wyk1184/下載/navicat111_mysql_cs$ & ./start_navicat

navicat 破解方案
第一次執行start_navicat時,會在用戶主目錄下生成一個名爲.navicat的隱藏文件夾。javascript

cd /home/rain/.navicat/

此文件夾下有一個system.reg文件java

rm system.reg

把此文件刪除後,下次啓動navicat 會從新生成此文件,30天試用期會按新的時間開始計算。mysql

一個表單兩個提交jquery

<script>
function save(){ 
document.form1.action="right.asp";
document.form1.submit();
}
function send(){
document.form1.action="sendtaskook.asp";
document.form1.submit();
}
</script>
<form name="form1">
<input type="button" name="btn1" value="發送" onclick="send();">
<input type="button" name="btn2" value="保存" onclick="save();">
</form>

@RequestMapping(value="/changePsd/{password}/{newpsd}",method=RequestMethod.POST)
public String changePsd(@PathVariable("password") String password,@PathVariable("newpsd") String newpsd,@RequestBody Account account,BindingResult errors) throws Exception {
if(errors.hasErrors()) {
return "/order/index";
}
account.setPassword(newpsd);
accountManager.update(account);
Flash.current().success(UPDATE_SUCCESS);
return "redirect:/";
}

更多 0web

Javascript獲取select下拉框選中的的值
如今有一id=test的下拉框,怎麼拿到選中的那個值呢?spring

分別使用javascript原生的方法和jquery方法sql

<select id="test" name="">
<option value="1">text1</option>
<option value="2">text2</option>
</select>app

code:code

一:javascript原生的方法orm

1:拿到select對象: var myselect=document.getElementById("test");

2:拿到選中項的索引:var index=myselect.selectedIndex ; // selectedIndex表明的是你所選中項的index

3:拿到選中項options的value: myselect.options[index].value;

4:拿到選中項options的text: myselect.options[index].text;

二:jquery方法(前提是已經加載了jquery庫)

1:var options=$("#test option:selected"); //獲取選中的項

2:alert(options.val()); //拿到選中項的值

3:alert(options.text()); //拿到選中項的文本

isNaN()
typeof()

解決document.form1.submit()對象不支持此屬性或方法
決document.form1.submit()對象不支持此屬性或方法的辦法.
解決document.form1.submit()對象不支持此屬性或方法的辦法:很簡單,將頁面中名稱爲"submit"的控件改一下名稱就能夠了
好比:
有一個submit按鈕名字叫submit
<input type="submit" name="submit" value="提交"/>
你把這個名稱改一下
<input type="submit" name="submit1" value="提交"/>

若使用 @ResponseBody 須要導入包

import org.springframework.web.bind.annotation.ResponseBody;
相關文章
相關標籤/搜索