我第一次使用jQuery-Mobile,我不知道如何在ios中使用我的項目。iOS中的移動jQuery - 如何獲取UIWebView中的元素位置?
我必須導入哪個文件?在http://jquerymobile.com/網站上,我下載了jquery.mobile-1.0b3.js和jquery.mobile-1.0.min.js。我使用哪個?
這是我的代碼。
NSString *path = [[NSBundle mainBundle] pathForResource:@"jquery.mobile-1.0b3" ofType:@"js"];
NSString *jsCode = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[self stringByEvaluatingJavaScriptFromString:jsCode];
這是正確的?
而我想獲得指定的元素。在jQuery中,有一個函數 - '.position' 但手機jquery支持這個功能嗎?我怎麼能夠?
NSString *code = @"var p=$('p:first'); var pos=p.position();"
NSLog(@"%@", [webView stringByEvaluatingJavaScriptFromString:@"position.left"]);
請幫幫我。
在此先感謝。