1

私のプロジェクトでは、jQuery Rule Pluginを使用する必要があります

新しいCSSルールをdomに追加できるように、それは素晴らしいようです。

しかし、どうすれば新しいルールを作成してdomに追加できますか??

ドキュメントには次のように書かれています:

These are the methods, the plugin adds to the different namespaces.

jQuery.fn
 - sheet: returns the stylesheets from the matched styles and links.
 - cssRules: return all the rules from all the given sheets.
 - ownerNode: returns the nodes that belong to the given sheet (opposite to sheets).
 - cssText: returns the text of the first matched style/link.

jQuery.rule
 - constructor( $.rule ):
    - 1st argument: nothing, a rule filter, rule literal, css rule or array of rules.
    - 2nd argument: nothing, node filter for link/style, nodes link/style.
 - sheets: returns the sheets that match the selector or all of them if none.
 - clean: converts a rule literal, to array of rules.
 - parent: returns the parent of a rule, neccesary for IE.
 - outerText: return the selector with the rules of the given rule.
 - text: gets/sets the cssText of the rule.

jQuery.rule.fn
 - append: will add one or more styles in the form of "attr:value; attr:value" to the matched rules.
 - css : sets a value to all matched rules.
 - outerText: return $.rule.outerText of the first rule.
 - text: sets the cssText of the rules, or gets the cssText from the first one.
 - appendTo: appends the matched rules to the specified stylesheet(1), can be a selector, dom element, sheet.

All these methods ( from jQuery.rule.fn ) are equal (or very similar) to those in jQuery.fn, but for CSS Rules.
    add, andSelf, animate, appendTo, attr, css, dequeue,
    each, end, eq, fadeIn, fadeOut, fadeTo, filter, get,
    hide, index, is, map, not, pushStack, queue, remove,
    setArray, show, size, slice, stop, toggle.

Some calls to show and hide behave unexpectedly sometimes. Some styles and animations might fail.

私を助けてください 。

ありがとうございました。

注:jQueryについて何か知っていれば非常に簡単にできると思いますが、初心者の場合は難しいでしょう.Googleでこれに関する情報を取得しようとしましたが、何も見つかりません. 私は質問に精通していますがWhat you tried ?、ここではわかりません!! これが始まりです。ありがとうございました !

4

2 に答える 2

2

基本的な例:

$.rule('#some_id','style').append('font-size:17px');

この例では、「some_id」という名前のcssidに新しいスタイルを追加するルールです。font-sizeを17pxに設定する新しいcssルールを追加します。

つまり、基本的には、ここで説明されているパラメータを使用して「$.rule」キーワードを使用して新しいルールを作成していますhttp://flesler.webs.com/jQuery.Rule/API.txt

ここでより多くの例を得ることができます:http://flesler.webs.com/jQuery.Rule/

もちろん、最初にjqueryとこのプラグインをYouドキュメントに含める必要があります。このような:

<script type="text/javascript" src="jquery.js"></script> 
<script type="text/javascript" src="jquery.rule.js"></script>
于 2012-04-17T10:40:01.553 に答える
1

jQuery ルールを使用しないでください - そのドキュメントは信じられないほど悪いです。JSS ははるかに優れています: https://github.com/Box9/jss。JSSでやりたいことをする方法:

jss('#some_id', {
  fontSize: '17px'
});
于 2012-10-25T05:09:00.823 に答える