gpt4 book ai didi

javascript - 将 href=# 更改为 javascript :

转载 作者:行者123 更新时间:2023-12-02 19:50:42 24 4
gpt4 key购买 nike

嗨,我之前问过如何通过单击按钮而不是页面加载来加载 div 的内容(URL),我得到了以下代码作为答案:

<script type="text/javascript">
function toggleDiv(id){
if ($('#' + id).html() == '') {
$.ajax({
url: 'api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=SOMETHING&from=en&to=de&text=Hello', // your url to microsoft translator
success: function(data) {
$('#' + id).html(data);
},
error: function() {
$('#' + id).html('The resource could not be loaded');
}
});
}

$('#' + id).toggle(); // Toggle div visibility
}
</script>

<a href="#" onclick="toggleDiv('a')">Show/Hide Value</a>
<div id="a" style="display:none"></div>

首先,它无法正常工作,并且总是显示“资源无法加载”,如果您放置像 (http://knowpersia.com/a.txt) 这样的 txt 链接,它也不起作用。其次,显示/隐藏值链接使用 href=# 和 onclick 系统来工作。当我在我的网站上使用它时,单击它会返回主页。有没有办法将其更改为:

<a href="javascript:toggleDiv('a')">Show/Hide Value</a>

谢谢

最佳答案

您必须将 id 传递给 toggleDiv() 函数,并且您要传递对象集合 -> toggleDiv('a')//没有。另外,如果您使用 jQuery,我建议您摆脱那些丑陋的内联代码。然后,您可以将 jQuery 对象传递到您的函数中:

<a href="#" id="link">Show/Hide Value</a>
<div id="content"></div>

.

var toggleDiv = function($el) {
if ($el.empty()) { // You can just use `empty()`
$.ajax({
url : 'api.microsofttranslator.com/V2/Ajax.svc/Translate?appId=SOMETHING&from=en&to=de&text=Hello', // your url to microsoft translator
success : function (data) {
$el.html(data);
},
error : function () {
$el.html('The resource could not be loaded');
}
});
}
$el.toggle(); // Toggle div visibility
};

$('#link').click(function(){ toggleDiv($('#content')); });

关于javascript - 将 href=# 更改为 javascript :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9344202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com