2017年11月21日 星期二

[JS]JQUERY 取值 設定值 用法

JQUERY 取值 設定值 用法
TextBox (最基本的)
  1. Html定義
  2.  
  3. 取值
  4. $('input[name="text1"]').val();
  5. 取自訂屬性
  6. $('input[name="text1"]').attr("test");
  7. 設定值
  8. $('input[name="text1"]').val("text123");
  9. 設定自訂屬性
  10. $('input[name="text1"]').attr("test","測試用123");
Checkbox
  1. Html定義
  2.  
  3.  
  4. 取值
  5. $('input[name="check1"]').val()
  6. 取自訂屬性
  7. $('input[name="check1"]').attr("test")
  8. 取得是否被勾選
  9. $('input[name="check1"]').prop("checked");
  10. 設定值
  11. $('input[name="check1"]').val("text123");
  12. 設定自訂屬性
  13. $('input[name="check1"]').attr("test","測試用123");
  14. 設定勾選
  15. $('input[name="check1"]').prop("checked",true);
RadioButton
  1. Html定義
  2.  
  3. 取得現在選取的值
  4. $('input[name="radio1"]:checked').val()
  5. 取現在選取的自訂屬性
  6. $('input[name="radio1"]:checked').attr("text")
  7. 設定測試為勾選狀態
  8. $('input[name="radio1"][value="0"]').prop("checked",true);
  9. 取得此欄位是否為勾選狀態
  10. $('input[name="radio1"][value="0"]').is(':checked')
Dropdownlist
  1. Html定義
  2.  
  3.  
  4. 取得現在選取的值
  5. $('select[name="select1"]').val()
  6. 取得現在選取的自訂屬性 (兩種都可以)
  7. $('option:selected', 'select[name="select1"]').attr('test');
  8. $( 'select[name="select1"] :selected').attr('test');
  9. 設定現在選取的值 (兩種效果一樣)
  10. $('select[name="select1"]').val("val1");
  11. $('select[name="select1"]').val("1");
  12. 取得此選項是否為勾選狀態
  13. $('select[name="select1"] option[value="val2"]').is(':selected');
  14. 取所有option 看是否為勾選
  15. $('select[name="select1"] option').each(function(){
  16. alert($(this).is(':selected'));
  17.  
  18. });
基本的大致在此 有想到再補充 使用的JQUERY版本為1.8.3 後面的版本應該也可以用 參考來源:http://white1027.blogspot.tw/2013/06/js-jquery.html

2012年10月18日 星期四

XCode 快捷鍵

向左移:command + [
向右移:command + ]


參考來源:http://www.1729.us/xcode/Xcode%20Shortcuts.pdf

2012年10月7日 星期日

PHP XML


function http_get($url,$header=array("Content-Type: text/xml;charset=utf-8")){
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_TIMEOUT, 60);
 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
 $ret = curl_exec($ch);
 curl_close($ch);
 return $ret;
}

function http_post($url,$params,$xml_post = true){
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_TIMEOUT, 60);
 curl_setopt($ch, CURLOPT_POST, 1);
 if($xml_post) curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: text/xml"));
 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
 $ret = curl_exec($ch);
 curl_close($ch);
 return $ret;
}


出處
http://qxbbs.org/viewtopic.php?p=1039323&sid=d94ea6385045e4b3cc6b32c8a282299c

2012年7月3日 星期二

使用PresentModalViewController時,來切換下一個 ViewController, 如何還可以使用 navigationController

NextViewController *nextViewController=[[NextViewController alloc]initWithNibName:@"NextViewController" bundle:nil]; UINavigationController *navBar=[[UINavigationController alloc]initWithRootViewController:nextViewController]; [self.navigationController presentModalViewController:navBar animated:YES]; [navBar release]; [nextViewController release]; 參考來源:http://stackoverflow.com/questions/6056726/presentmodalviewcontroller-not-showing-navigation-bar-on-next-view

Android 模擬器 切換直橫式

Android 切換直橫式的按鈕 windows :Ctrl + F12 Max OSX:Command + 7

2012年6月27日 星期三

jQuery: 判斷 checkbox 是否被選取

直接用這個在 javaScript 中判斷 checkbox 被核取與否:

$("#your-checkbox-id").attr('checked')
例如:
if ( $("#your-checkbox-id").attr('checked') ) { dosomething(); }

2012年6月25日 星期一

TabbarController為每個UIView 加上各自的UINavigationController

在TabbarController為每個獨立的 UIView加上各自的UINavigatonController有兩個方法:

一、自已以語法的方式建立。


1、在 ExampleAppDelegate.h 檔加上下面的語法
  1. /*
  2. * ExampleAppDelegate.h
  3. */
  4. @interface ExampleAppDelegate : NSObject
  5. {
  6. UIWindow *window;
  7. UITabBarController *mainBar;
  8. UINavigationController *firstNav;
  9. UINavigationController *secondNav;
  10. }
  11. @property (nonatomic, retain) IBOutlet UIWindow *window;
  12. @property (nonatomic, retain) UITabBarController *mainBar;
  13. @property (nonatomic, retain) UINavigationController *firstNav;
  14. @property (nonatomic, retain) UINavigationController *secondNav;
  15. @end

2、在 ExampleAppDelegate.m 寫上下面的語法
  1. /*
  2. * ExampleAppDelegate.m
  3. */
  4. #import "ExampleAppDelegate.h"
  5. #import "FirstView.h"
  6. #import "SecondView.h"
  7.  
  8. @implementation ExampleAppDelegate
  9.  
  10. @synthesize window;
  11. @synthesize mainBar;
  12. @synthesize firstNav;
  13. @synthesize secondNav;
  14.  
  15. - (BOOL)application:(UIApplication *)application
  16. didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
  17. {
  18. firstNav = [[UINavigationController alloc] init];
  19. FirstView *firstView = [[FirstView alloc] init];
  20. [firstNav pushViewController:firstView animated:YES];
  21. firstNav.tabBarItem.title = @"First Tab";
  22. [firstView release];
  23.  
  24. secondNav = [[UINavigationController alloc] init];
  25. SecondView *secondView = [[SecondView alloc] init];
  26. [secondNav pushViewController:secondView animated:YES];
  27. secondNav.tabBarItem.title = @"Second Tab";
  28. [secondView release];
  29.  
  30. mainBar = [[UITabBarController alloc] init];
  31. mainBar.viewControllers = [NSArray arrayWithObjects:
  32. firstNav, secondNav, nil];
  33.  
  34. [self.window addSubview:mainBar.view];
  35. [self.window makeKeyAndVisible];
  36. return YES;
  37. }
  1.  
  1. - (void)dealloc
  2. {
  3.    [firstView release];
  4.    [secondView release];
  5.    [mainBar release];
  6.    [window release];
  7.    [super dealloc];
  8. }
  9. 二、以 xib 的方法建立
  10. 可以參考 http://blog.willwinder.com/2011/05/xcode4-uitabbarcontroller-with.html
  11. 特要注意的是要在 view 也拉一個 UINavigationControll,然後把UIView  UINavigationControll全建立個link  ViewController.h檔裡面,然後在 VieDidLoad加上下列的語法:在這邊我把UIView取名為theParentViewOutletUINavigationController取名為 navigationController
  12. 這樣的用意是可以取代原本的navigationController。就不用改太多了。
  13. [self.theParentViewOutlet addSubview:self.navigationController.view];
  14.  
  15. 以上的資料參考下面兩個網址:
  16. 1http://ppkko.blogspot.tw/2011/05/tabbarcontroller-navigationcontroller.html
  17.  
  18. 2http://stackoverflow.com/questions/5163024/uinavigationcontroller-inside-uiview