使用AJAX动态装箱

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用AJAX动态装箱相关的知识,希望对你有一定的参考价值。

This is how you can create page box elements that are loaded via AJAX and can be refreshed instantly without a whole page reload.
  1. jQuery(document).ready(function($) {
  2. //event to show the box controls when the mouse hovers the box
  3. //applies to all elements with class="box"
  4. $('.box').mouseover(function(){
  5. //replace string "box" with "controls"
  6. var dyn_var = "#" + this.id.replace("box","controls");
  7. $(dyn_var).show();
  8. });
  9.  
  10. //initialize box controls
  11. $('.box .controls').hide(); //hide all box controls
  12.  
  13. //hide box when mouse exits box
  14. $('.box').mouseout(function(){
  15. $('.box .controls').hide();
  16. });
  17.  
  18. //load box content (loads after page loads)
  19. loadboxcontent('box-id1');
  20. loadboxcontent('box-id2');
  21. //etc...
  22. });

以上是关于使用AJAX动态装箱的主要内容,如果未能解决你的问题,请参考以下文章

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

动态 Rstudio 代码片段

动态规划(斜率优化):BZOJ 1010 HNOI2008 玩具装箱

支持动态或静态片段的不同屏幕尺寸?

Javascript代码片段在drupal中不起作用

#yyds干货盘点# 动态规划专题:装箱问题