作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<script type="text/javascript">
alert("hello");
$(function viewKart(event) {
alert("hello");
$("#popupdiv").dialog({
title: "AddCart",
width: 630,
height: 450,
modal: true,
buttons: {
Close: function () {
$(this).dialog('close')
}
}
});
return false;
});
</script>
<div class="text">
<a id="cartClick" onclick="viewKart();" href="#"> Cart(@if ( @App["CartLen"] != null) { @App["CartLen"] })</a>
</div>
<div id="popupdiv" title="Basic modal dialog" style="display: none">
<p>Hello World !</p>
</div>
我正在尝试调用 jquery 函数,但无法调用。我有一个文本“Cart(0)”,我想将它作为一个链接来查看实际上是一个弹出窗口的购物车。
最佳答案
不需要 jQuery 环绕您的函数。
function viewKart() {
alert("hello");
$("#popupdiv").dialog({
title: "AddCart",
width: 630,
height: 450,
modal: true,
buttons: {
Close: function() {
$(this).dialog('close')
}
}
});
$("#popupdiv").dialog("open")
return false;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"></script>
<div class="text">
<a id="cartClick" onclick="viewKart();" href="#"> Cart(...)</a>
</div>
<div id="popupdiv" title="Basic modal dialog" style="display: none">
<p>Hello World !</p>
</div>
关于javascript - 无法在 jquery 中使用 <a> 调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26378226/
我是一名优秀的程序员,十分优秀!