利用陣列和ajax實現單條翻動標題新聞

2021-08-29 11:48:16 字數 754 閱讀 1059

ruby 1.8.6 rails 1.2.6

在視**件/home/index.rhtml中寫:

<%= @current_hint %>

<%= periodically_call_remote :url => ,:frequency=>2 %>

在控制器檔案home_controller.rb中寫:

在檢視中建立檔案:get_next_hint.rjs,內容如下:

page['my_hint'].replace_html @current_hint

其中,hintnew模型對應表:hint_news

遷移任務檔案:005_create_hint_news.rb定義如下:

class createhintnews < activerecord::migration

def self.up

create_table :hint_news do |t|

t.column :title,:string

t.column :body,:text

endend

def self.down

drop_table :hint_news

endend

用遷移任務建好表,然後加些記錄進去,就可以執行了。

利用模板實現簡單的棧類(陣列和單鏈表)

pragma once using namespace std const int maxsize 0xfff template type class class linkstack class linkstack int size top 1 max size size class linksta...

利用jQuery和CSS實現環形進度條

原理非常的簡單,在這個方案中,最主要使用了css3的transform中的rotate和css3的clip兩個屬性。用他們來實現半圓和旋轉效果。先來看其結構。html div 0span div div 結構非常簡單。這樣的結構,大家一看就清楚。css.pie right right pie rig...

利用ajax和Java實現登入驗證的小例子

package com.jia.bean public class student public void setid string id public string getname public void setname string name public string get public v...