jquery更改Reaper某一列的值

2022-09-15 19:30:18 字數 2394 閱讀 3641

一、實現效果:通過jquery實現點選repeater中的按鈕迴圈修改快遞專線的線路狀態

1、初始效果圖

2、點選關閉專線按鈕之後的效果圖

二、mvc模式實現上述效果

sqlserverdal層

#region 修改快遞線路狀態

//////根據自動編號、快遞線路狀態修改快遞線路資訊

/// ///

自動編號

///是否專線

///public

int updatespecial(int id, bool

isspecial)

where id=

", convert.toint32(isspecial), id);

return dbutility.sqlhelper.executenonquery(connstring.conn, commandtype.text, str, null

); }

#endregion

models層——>dal層

#region 修改專線狀態

//////根據自動編號、專線狀態修改快遞線路資訊

/// ///

自動編號

///專線狀態

///public

static

int updatespecial(int id, bool

isspecial)

#endregion

controllers層

///

///修改專線狀態

/// ///

自動編號

///是否開通專線

///public jsonresult updatespecial(int

id, bool

special));}

else

); }

}

views層

@model ienumerable<

wutong

.model.miniexpressline

>@

<

form

>

<

table

width

="720"

class

="tb2"

cellpadding

="0"

cellspacing

="0"

>

<

tr>

<

td class

="dh strong"

width

="40"

><

input

type

="checkbox"

>

td>

<

td class

="dh strong"

width

="150"

>出發地->到達地

td>

<

td class

="dh strong"

width

="100"

> 發布/重新整理時間

td>

<

td class

="dh strong"

width

="50"

>線路狀態

td>

<

td class

="dh strong"

width

="50"

>管理線路

td>

<

td class

="dh strong"

width

="30"

>檢視

td>

<

td class

="dh strong"

width

="30"

>修改

td>

<

td class

="dh strong"

width

="30"

>刪除

td>

tr>

@foreach (var item in model)

table

>

form

>

@section js

jQuery獲取Table某列的值

在寫此篇博文時,發現在以前曾寫過 獲取datatable選擇第一行某一列值 但是與此篇所說的完全不一樣。這篇insus.net需要的是jquery去獲取html table的某一行某一列的資料。如下表 th 費用名目 th th 費用解釋 th th 收費明細 th th 幣種 th th styl...

jquery取input不等於某class

attribute value 匹配給定的屬性是某個特定值的元素 attribute value 匹配所有不含有指定的屬性,或者屬性不等於特定值的元素 attribute value 匹配給定的屬性是以某些值開始的元素 attribute value 匹配給定的屬性是以某些值結尾的元素 attrib...

jquery查詢指定id元素下的某個或某些元素

find用法 1.為什麼要用find 通常,選擇乙個元素很簡單,id 就可以搞定,但是如果想選擇某個id為x1的div下的某個id為x2的元素就很困難了,可以通過用find來解決這個問題。2.find怎麼用 首先貼出api中find的構造方法 find expr obj ele 返回值 jquery...