溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery實(shí)現(xiàn)的點(diǎn)擊按鈕改變樣式功能示例

發(fā)布時(shí)間:2020-08-26 06:38:06 來源:腳本之家 閱讀:178 作者:金含 欄目:web開發(fā)

本文實(shí)例講述了jQuery實(shí)現(xiàn)的點(diǎn)擊按鈕改變樣式功能。分享給大家供大家參考,具體如下:

1. css代碼:index4.css

@CHARSET "UTF-8";
.sd{
  font-weight: bold;
  color: black;
  background: red;
}

2. jsp代碼:index4.jsp

<%@ page language="java" import="java.util.*"pageEncoding="UTF-8"%>
<%
Stringpath = request.getContextPath();
StringbasePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTDHTML 4.01 Transitional//EN">
<html>
 <head>
  <base href="<%=basePath%>" rel="external nofollow" >
  <title>My JSP 'index4.jsp' startingpage</title>
  <meta http-equiv="pragma"content="no-cache">
  <meta http-equiv="cache-control"content="no-cache">
  <meta http-equiv="expires"content="0">
  <meta http-equiv="keywords"content="keyword1,keyword2,keyword3">
  <meta http-equiv="description"content="This is my page">
  <link rel="stylesheet"type="text/css" href="css/index4.css" rel="external nofollow" >
  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  </head>
  <body>
 <table width="428"height="148" border="1"align="center" id="table">
 <tr>
 <td><div align="center">
 <label><input type="button"name="Submit" value="添加樣式" onclick="clicks()"/></label>
 <label><input type="button"name="Submit2" value="移除樣式" onclick="removeClicks()"/></label></div>
 </td>
 </tr>
 </table>
 <script type="text/javascript">
  function clicks(){
//  $("#table").toggleClass("sd");
  $("#table").addClass("sd");
  }
  function removeClicks() {
  $("#table").removeClass("sd");
  }
 </script>
 </body>
</html>

運(yùn)行效果:

jQuery實(shí)現(xiàn)的點(diǎn)擊按鈕改變樣式功能示例

感興趣的朋友可以使用在線HTML/CSS/JavaScript代碼運(yùn)行工具http://tools.jb51.net/code/HtmlJsRun測試一下運(yùn)行效果。

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery頁面元素操作技巧匯總》、《jQuery常見事件用法與技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常見經(jīng)典特效匯總》及《jquery選擇器用法總結(jié)》

希望本文所述對大家jQuery程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI