基本思路:
通过使用jquery选择器得到对应表单的jquery对象,然后使用attr方法修改对应的action
示例程序一:
默认情况下,该表单会提交到page_one.html
点击button之后,表单的提交地址就会修改为page_two.html
jquery test
修改form的提交地址为page_two.html
var $fun = ...
                            
                            
                                分类:
Web程序   时间:
2014-06-29 07:33:12   
                                阅读次数:
236
                             
                         
                    
                        
                            
                            
                                用减法可能会超时,但可以用二分
class Solution {
public:
    int divide(int d1, int d2) {//       d1/d2
        if(d1==0)
            return 0;
        if(d2==1)
            return d1;
        if(d2==-1)
   ...
                            
                            
                                分类:
其他好文   时间:
2014-06-29 07:22:02   
                                阅读次数:
208
                             
                         
                    
                        
                            
                            
                                【题目】
Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.
【题意】
判断二叉树是否是平衡二叉树
【思路】
平衡二...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 11:02:54   
                                阅读次数:
173
                             
                         
                    
                        
                            
                            
                                1、
??
Recover Binary Search Tree
Two elements of a binary search tree (BST) are swapped by mistake.
Recover the tree without changing its structure.
Note:
A solution using O(n) space is pretty...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 10:13:49   
                                阅读次数:
243
                             
                         
                    
                        
                            
                            
                                Enumerations and Structures
Enumerations   枚举的使用
使用 enum 定义一个枚举,枚举里面可以关联方法,比如下文中的描述方法
enum Rank: Int {
    case Ace = 1
    case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten
    case Ja...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 09:03:39   
                                阅读次数:
322
                             
                         
                    
                        
                            
                            
                                题目
Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node...
                            
                            
                                分类:
其他好文   时间:
2014-06-20 09:02:56   
                                阅读次数:
232
                             
                         
                    
                        
                            
                            
                                Let d(n) be defined as the sum of proper divisors of n (numbers less than
n which divide evenly into n).
If d(a) = b and d(b) = a, where a 
b, then a and b are an amicable pair and each of a and
b...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 13:40:53   
                                阅读次数:
226
                             
                         
                    
                        
                            
                            
                                杭电OJ(HDU)-ACM Steps-Chapter Two-《Biker's Trip Odometer》《Climbing Worm》《hide handkerchief》《Nasty Hac》...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 11:39:31   
                                阅读次数:
315
                             
                         
                    
                        
                            
                            
                                二维码:二维码(Two-dimensional 
code),又称二维条码,它是用特定的几何图形按一定规律在平面(二维方向)上分布的黑白相间的图形,是所有信息数据的一把钥匙。在现代商业活动中,可实现的应用十分广泛,如:产品防伪/溯源、广告推送、网站链接、数据下载、商品交易、定位/导航、电子凭证、车辆管...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 08:05:10   
                                阅读次数:
269
                             
                         
                    
                        
                            
                            
                                Given a linked list, swap every two adjacent 
nodes and return its head.For example,Given1->2->3->4, you should 
return the list as2->1->4->3.Your algor...
                            
                            
                                分类:
其他好文   时间:
2014-06-05 13:41:44   
                                阅读次数:
231