0
我想實現一個按鈕點擊事件,並試圖在我的Java腳本函數中調用它,而沒有實際點擊按鈕。在javascript中按鈕點擊代碼事件
protected void btn_hid_Click(object sender, EventArgs e) {
string fbid = tb_id.Text;
query = "select userid from users where fbid='" + fbid + "'";
ds = db.SelectDs(query);
}
現在我想在JavaScript函數中調用此函數,一旦發生頁面加載並調用java腳本。
function func() {
alert("hiden");
$(document).ready(function() {
control or simple html control
$("[id*='btn_hid']").click();
});
alert("hiden end");
}
但是這並沒有發生。您能告訴我該怎麼做嗎?
okey,我真的覺得它有用 – shalini
我很樂意幫助你Shalini –