English 中文(简体)
页: 1 学历 气象样本整合和(或)一体化准则
原标题:jQuery-Mobile Meteor sample integration and/or integration guidelines

我对Meeteor印象深刻,并愿用j Query-Mobile加以利用。 我很想知道,有些人是否已经树立了融合样本。 如果不是的话,一些准则将是巨大的。

关于

Cédric

最佳回答

我很想知道这一点,因此我做了一个样本:

http://jqmdemo.meteor.com/

似乎工作良好。 你可以在此找到来源法:

https://github.com/snez/jqm-meteor”rel=“nofollow noreferer”>https://github.com/snez/jqm-meteor

这两者一起使用时有几条 go,见法典中的评论意见。

www.un.org/Depts/DGACM/index_spanish.htm 它看起来像气象局。 只有当有更好的办法与更新的框架版本做同样的事时,才把该项目作为参考。

问题回答

当我试图把框架档案存放在客户名录中时,我就能够初步工作。 Meteor在试图确定DOCTYPE的联号材料中投下了一个错误,甚至在从未提及的例子夹中存档。 通过使用上述评论中提到的CDN主办版本和拆卸汽车,我不得不在不接触任何无证件的APIC。

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<script type="text/javascript">
     $( document ).bind( "mobileinit", function( event, data ){
          $.mobile.autoInitializePage = false;
     });    
</script>

我建议查看<代码>/包装/jquery的夹。

All this does is add in the jquery.js file into the stack of files to get sent to the client. If you are after this you could add your own package called jquery-mobile and include the files it needs.

见一揽子计划。 j 关于如何开展工作的档案:

https://github.com/meteor/meteor/blob/master/packages/jquery/package.js

So just add the mobile files into your jquery-mobile package and do something like:

Package.on_use(function (api) {
  api.add_files( jquery.mobile-1.1.0.min.css ,  client );
  api.add_files( jquery.mobile-1.1.0.min.js ,  client );
});




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签