<p id="sub-total">
<strong>Total</strong>: <span id="stotal"></span></p>
<p><input type="submit" id="submit-order" value="Submit" class="btn"/></p>
如何获得&#34; stotal&#34;来自HTML的值并传递给服务器。现在价值来自jQuery。
答案 0 :(得分:4)
你可以使用jquery。
var stotal=$("#stotal").text();
答案 1 :(得分:1)
这会帮助你。
$('#submit-order').click('click', function(event){
// set the span value
var span_val = $('#stotal').text();
if(span_val=="")
{
alert("span value is null");
}
else
{
alert(span_val);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p id="sub-total">
<strong>Total</strong>: <span id="stotal"></span></p>
<p><input type="submit" id="submit-order" value="Submit" class="btn"/></p>
答案 2 :(得分:0)
试试这个:
$('#stotal').html();
// it will give you what ever text <span> tag contains.