我想将自定义按钮添加到特定型号的rails_admin new / edit页面。
此按钮应将get请求的内容解析为自定义URL。
我使用JQuery方法找到的当前问题如下:
$('#your_button_id').click(function () {
$.get('your_url', function(data) {
//$('.result').html(data); - sample
//Do whatever you want
alert('Load was performed.');
});
});
是否不加载flashvars属性。
我想知道是否还有其他选择来检索包含flashvars的整个内容。
答案 0 :(得分:0)
我不确定您是否只想获取URL或对get请求的响应,所以:
如果您需要网址:
$('#your_button_id').click(function () {
var sPageURL = window.location.search.substring(1);
//manipulate the url in sPageURL
});
如果您需要网址的内容:
$('#your_button_id').click(function () {
$.get('your_url', function(data) {
//$('.result').html(data); - sample
//Do whatever you want
alert('Load was performed.');
});
});
参考文献: