1
我想發送href值。但它不起作用。發送變量fancybox onclick事件
function display() {
$.fancybox({
'href': 'index.php',
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
}
我tryed這一點:
function display (who) {
$.fancybox({
'href': 'index.php'+who,
'width' : '75%',
'height' : '75%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
}
<a onclick="javascript:display("?id=11");" href="#" >create</a>
的innerHTML這裏面onclick事件所以它不是與工作「削減
爲什麼
這onclick事件裏面的innerhtml所以它不與'斜槓 – 2010-04-27 01:35:14
@samuel一起工作 - 我沒有跟着你,你能說不同的話嗎?我會在我的答案中使用第二種方法,但是如果您必須可以使用'\''或'\'''''''作爲斜槓,那麼您可以在字符串中使用引號。 – 2010-04-27 01:36:48
謝謝。謝謝 – 2010-04-27 01:39:29