$.each(data, function(index, obj){
[……]
[……]
/**
* VECTOR
* https://vector.cool
*/
<script>
$('.classname').get(0).tagName;
$('.classname')[0].tagName;
$('.classname').prop("tagName");
</script>
[……]
[……]
<a href="javascript:parent.$.fancybox.close();">關閉</a>
或
<script>
$('a').click(function(e){
parent.$.fancybox.close();
})
</script><a href="$.fancybox.close();">關閉</a>
或
<script>
$('a').click(function(e){
$.fancybox.close();
})
</script>[……]
<script type=”text/javascript”>
$(document).ready(function(){
$(‘a’).click(function (event){
var url = $(this).attr(“href”);
alert(url);
event.preventDefault(); /* 清除a標籤預設動作*/
});
});
</script>
<a href=”http://tw.yahoo.com”>測試</a>[……]
$(el).stop().animate( {rotation: 360}, { duration: 500, step: function(now, fx) { $(this).css({“transform”: “rotate(“+now+”deg)”}); } } );[……]