我想在按钮单击时显示跨度类的值。我已经发布了一个问题。但它只是在小提琴中工作而不是我的页面..所以我再次发布这个问题并进行修改..
我有以下领域..
<th width="20%" class="bdrL_blue valignT highlight">
<span class="font18">Rs.360</span>
<br />
</th>
<th width="20%" class="bdrL_blue valignT highlight">
<a href="<%: Url.Action("Payment", "EmployerVas") %>"><img src="../../Content/Images/Subscribe now on click.png" class="btn"onclick="returnsms_confirm.call(this)"/></a>
</th>
<th width="20%" class="bdrL_blue valignT highlight">
<span class="font18">Rs.1000</span> <span class="font20"></span></th>
<th width="20%" class="bdrL_blue valignT highlight">
<a href="<%: Url.Action("Payment", "EmployerVas") %>"><img src="../../Content/Images/Subscribe now on click.png" class="btn" /></a></th>
这是我的原始代码..
单击按钮时,它会占用相关跨度类的数量..
jQuery代码
function sms_confirm() {
var r = confirm("Confirm the order to buy " + $("span[class^='font']").text() + " amount")
if (r == false) {
return false;
}
}
上面的 jquery 代码给了我的结果
Confirm the order to buy Rs.360 Rs.1000 amount
像那样...我想显示单个按钮单击的单个金额..如何在 jquery 中执行此操作?