我试图隐藏一个div,它来自其他服务器。我正在使用pyment网关API来自支付网关网站的所有数据。但是我希望在我的网站上隐藏它。 这是网址https://secure.ccavenue.com/transaction/transaction.do?command=initiateTransaction。
<script type="text/javascript">
// Get URL
var url = window.location.href;
// Get DIV
var msg = document.getElementById('mobileno');
// Check if URL contains the keyword
if( url.search( 'command=initiateTransaction' ) > 0 ) {
// Display the message
msg.style.display = "none";
alert('hello this is not disable');
}
</script>