找到 8590 篇文章 关于前端技术
3K+ 阅读量
jQuery.getScript( url, [callback] ) 方法使用 HTTP GET 请求加载并执行 JavaScript 文件。以下是此方法使用所有参数的说明:url - 包含发送请求的 URL 的字符串callback - 此可选参数表示在数据成功加载时要执行的函数。假设我们在 result.js 文件中有以下 JavaScript 内容:function CheckJS(){ alert("This is JavaScript"); }示例以下代码片段显示了此方法的用法: $(document).ready(function() { ... 阅读更多
549 阅读量
serializeArray( ) 方法序列化所有表单和表单元素,就像 .serialize() 方法一样,但会返回一个 JSON 数据结构供您使用。假设我们在 serialize.php 文件中有以下 PHP 内容:示例以下是一个显示此方法用法的示例:实时演示 The jQuery Example $(document).ready(function() { $("#driver").click(function(event){ ... 阅读更多
555 阅读量
要访问由 serializeArray 创建的值,请使用 serializeArray( ) 方法。serializeArray( ) 方法序列化所有表单和表单元素,就像 .serialize() 方法一样,但会返回一个 JSON 数据结构供您使用。假设我们在 serialize.php 文件中有以下 PHP 内容:以下是一个显示此方法用法的示例:示例实时演示 The jQuery Example $(document).ready(function() { $("#driver").click(function(event){ ... 阅读更多
4K+ 阅读量
要从序列化数组获取值,请使用 serializeArray( ) 方法。serializeArray( ) 方法序列化所有表单和表单元素,就像 .serialize() 方法一样,但会返回一个 JSON 数据结构供您使用。假设我们在 serialize.php 文件中有以下 PHP 内容:以下是一个显示此方法用法的示例:示例实时演示 The jQuery Example $(document).ready(function() { $("#driver").click(function(event){ ... 阅读更多
541 阅读量
jQuery.getJSON( url, [data], [callback] ) 方法使用 GET HTTP 请求从服务器加载 JSON 数据。以下是此方法使用所有参数的说明:url - 包含发送请求的 URL 的字符串data - 此可选参数表示将发送到服务器的键/值对。callback - 此可选参数表示在数据成功加载时要执行的函数。假设我们在 result.json 文件中有以下 JSON 内容:{ "name": "David", "age" : "25", "sex": "male" }以下是一个显示用法... 阅读更多
17K+ 阅读量
要使用 jQuery 加载 JSON 数据,请使用 getJSON() 和 ajax() 方法。jQuery.getJSON( ) 方法使用 GET HTTP 请求从服务器加载 JSON 数据。以下是此方法使用所有参数的说明:url - 包含发送请求的 URL 的字符串data - 此可选参数表示将发送到服务器的键/值对。callback - 此可选参数表示在数据成功加载时要执行的函数。在 result.json 文件中添加您的 JSON 内容:{ "name": "Amit", "age" : "27", "sex": "male" }以下是一个显示... 阅读更多
0 Views
To load an external HTML into using jQuery, use the attr() method. In that set the source for iframe. You can try to run the following code to learn how to locate external HTML −ExampleLive Demo $(document).ready(function(){ $('#iframe').attr('src', 'https://www.qries.com'); });
3K+ Views
To change the background image using jQuery, use the jQuery css() method. The background-image CSS property is used to change background image.ExampleYou can try to run the following code to learn how to change background image using jQuery:Live Demo $(document).ready(function(){ $("body").on({ mouseenter: function(){ $(this).css("background-image", "url('/css/images/css.jpg')"); }, }); }); Move the mouse pointer on the page to change the background image.
284 Views
jQuery on() methodThe on( events [, selector ] [, data ], handler ) method binds a handler to an event (like click) for all current − and future − matched element. It can also bind custom events.Here is the description of all the parameters used by this method −events − Event types separated by spaces.selector − A Selector Stringdata − Data to be passed to the event handler in event.datahandler − A function to bind to the event on each of the set of matched elementsExampleYou can try to run the following code to learn how to work with on() method − ... Read More