2013-05-20 76 views

回答

2

您可以使用fetch tritium函數來獲取要查找的元素中的類屬性值並將其存儲在變量中。

因此,考慮下面的HTML:

<html> 
    <head> 
    <title> Tritium Tester </title> 
    </head> 
    <body> 
    <div id="one" class="random"></div> 
    <div id="two"></div> 
    </body> 
</html> 

你可以寫下面的氚:

html() { 
    $("/html/body") { 
    $class_name = fetch("./div[@id='one']/@class") 
    $("./div[@id='two']") { 
     add_class($class_name) 
    } 
    } 
} 

這裏是一個活生生的例子鏈接:http://play.tritium.io/331dfa6d01a7dd52261a9eaf812bdc5c7fb8c293

相關問題